Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: mannuiitd/FastJavaIO
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: williamfiset/FastJavaIO
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 4 commits
  • 4 files changed
  • 3 contributors

Commits on Jan 2, 2026

  1. Update out of date gradel file

    William Fiset committed Jan 2, 2026
    Configuration menu
    Copy the full SHA
    93cf6f7 View commit details
    Browse the repository at this point in the history

Commits on Jun 5, 2026

  1. Update README

    williamfiset committed Jun 5, 2026
    Configuration menu
    Copy the full SHA
    116a0da View commit details
    Browse the repository at this point in the history
  2. Clean up InputReader: drop dead lookup tables, localize c, use Arrays…

    ….copyOf and parseDouble
    
    - Remove the unused byte[] and char[] lookup tables (only the digit
      table 'ints' is ever read) and simplify its initializer.
    - Demote the shared 'c' field to method-local variables in nextInt,
      nextLong, nextLine and nextDoubleFast (register-friendly, no shared
      state across calls).
    - Replace the hand-rolled char-buffer copy with Arrays.copyOf.
    - Use Double.parseDouble instead of Double.valueOf to avoid boxing.
    - Strip trailing whitespace.
    
    Behavior is unchanged; all existing tests pass.
    claude committed Jun 5, 2026
    Configuration menu
    Copy the full SHA
    ede1e3f View commit details
    Browse the repository at this point in the history
  3. Merge pull request williamfiset#13 from williamfiset/claude/cleanup-i…

    …nputreader-DWdB6
    
    Refactor InputReader: cleanup and optimize lookup tables
    williamfiset authored Jun 5, 2026
    Configuration menu
    Copy the full SHA
    03af6a0 View commit details
    Browse the repository at this point in the history
Loading