Skip to content

Commit

Permalink
Added a break clause that was removed by mistake.
Browse files Browse the repository at this point in the history
  • Loading branch information
antonini committed May 26, 2015
1 parent a569d1d commit cf233ea
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/main/java/org/takes/facets/auth/PsByFlag.java
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@ public Opt<Identity> enter(final Request req) throws IOException {
for (final Map.Entry<Pattern, Pass> ent : this.passes.entrySet()) {
if (ent.getKey().matcher(value).matches()) {
user = ent.getValue().enter(req);
break;
}
}
}
Expand Down

0 comments on commit cf233ea

Please sign in to comment.