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: jruby/jruby
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: ad62bc0074cf
Choose a base ref
...
head repository: jruby/jruby
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 6de3512eb3b8
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Jan 15, 2015

  1. Removed unused var

    Who828 committed Jan 15, 2015
    Copy the full SHA
    43668eb View commit details
  2. Merge pull request #2462 from Who828/unused_var

    Removed unused var
    headius committed Jan 15, 2015
    Copy the full SHA
    6de3512 View commit details
Showing with 0 additions and 1 deletion.
  1. +0 −1 core/src/main/java/org/jruby/util/IdUtil.java
1 change: 0 additions & 1 deletion core/src/main/java/org/jruby/util/IdUtil.java
Original file line number Diff line number Diff line change
@@ -131,7 +131,6 @@ public static boolean isNameCharacter(char c) {
}

public static boolean isNameCharacter19(char c) {
int letter;
return Character.isLetterOrDigit(c) || c == '_';
}