Skip to content

Commit

Permalink
[Truffle] Replace tabs with spaces.
Browse files Browse the repository at this point in the history
  • Loading branch information
thomaswue committed Jan 4, 2015
1 parent e0df8d5 commit 2db47b9
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 17 deletions.
Expand Up @@ -13,6 +13,6 @@

public class UseMethodMissingException extends SlowPathException {

private static final long serialVersionUID = -4534089746905620428L;
private static final long serialVersionUID = -4534089746905620428L;

}
Expand Up @@ -11,9 +11,9 @@

public class TruffleFatalException extends RuntimeException {

private static final long serialVersionUID = -3119467647792546222L;
private static final long serialVersionUID = -3119467647792546222L;

public TruffleFatalException(String message, Exception cause) {
public TruffleFatalException(String message, Exception cause) {
super(message, cause);
}

Expand Down
28 changes: 14 additions & 14 deletions core/src/main/java/org/jruby/truffle/translator/BodyTranslator.java
Expand Up @@ -1098,23 +1098,23 @@ private static org.jruby.ast.Node setRHS(org.jruby.ast.Node node, org.jruby.ast.
private final Map<String, String> globalVariableAliases = new HashMap<String, String>();

private void initReadOnlyGlobalVariables() {
Set<String> s = readOnlyGlobalVariables;
s.add("$:");
s.add("$LOAD_PATH");
s.add("$-I");
s.add("$\"");
s.add("$LOADED_FEATURES");
s.add("$<");
s.add("$FILENAME");
s.add("$?");
s.add("$-a");
s.add("$-l");
s.add("$-p");
Set<String> s = readOnlyGlobalVariables;
s.add("$:");
s.add("$LOAD_PATH");
s.add("$-I");
s.add("$\"");
s.add("$LOADED_FEATURES");
s.add("$<");
s.add("$FILENAME");
s.add("$?");
s.add("$-a");
s.add("$-l");
s.add("$-p");
}

private void initGlobalVariableAliases() {
Map<String, String> m = globalVariableAliases;
m.put("$-I", "$LOAD_PATH");
Map<String, String> m = globalVariableAliases;
m.put("$-I", "$LOAD_PATH");
m.put("$:", "$LOAD_PATH");
m.put("$-d", "$DEBUG");
m.put("$-v", "$VERBOSE");
Expand Down

0 comments on commit 2db47b9

Please sign in to comment.