Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix minor issue with CompilerPass.java
* This doesn't affect correctness, but use the right signature.
  • Loading branch information
subbuss committed Oct 8, 2014
1 parent a87c3a5 commit a7e6f8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/org/jruby/ir/passes/CompilerPass.java
Expand Up @@ -109,7 +109,7 @@ private Object makeSureDependencyHasRunOnce(Class<? extends CompilerPass> passCl
Object data = pass.previouslyRun(scope);

if (data == null) {
data = pass.run(scope, childScope);
data = pass.run(scope, false, childScope);
} else {
for (CompilerPassListener listener: scope.getManager().getListeners()) {
listener.alreadyExecuted(pass, scope, data, childScope);
Expand Down

0 comments on commit a7e6f8b

Please sign in to comment.