Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Oops, we had a diff + in there that wasn't supposed to be there
  • Loading branch information
lizmat committed Jun 2, 2013
1 parent 99c82d3 commit d670aaa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Perl6/ModuleLoader.nqp
Expand Up @@ -96,21 +96,21 @@ class Perl6::ModuleLoader {
%cand<load> := "$prefix/$pbc_path";
}
@candidates.push(%cand);
+last; # temporary, until we actually don't do just @candidates[0]
last; # temporary, until we actually don't do just @candidates[0]
}
elsif $have_pir {
my %cand;
%cand<key> := "$prefix/$pir_path";
%cand<load> := "$prefix/$pir_path";
@candidates.push(%cand);
+last; # temporary, until we actually don't do just @candidates[0]
last; # temporary, until we actually don't do just @candidates[0]
}
elsif $have_pbc {
my %cand;
%cand<key> := "$prefix/$pbc_path";
%cand<load> := "$prefix/$pbc_path";
@candidates.push(%cand);
+last; # temporary, until we actually don't do just @candidates[0]
last; # temporary, until we actually don't do just @candidates[0]
}
}
}
Expand Down

0 comments on commit d670aaa

Please sign in to comment.