Skip to content
This repository has been archived by the owner on May 31, 2020. It is now read-only.

Commit

Permalink
Corrected Java 1.5 code format problem.
Browse files Browse the repository at this point in the history
  • Loading branch information
freakboy3742 committed Apr 22, 2017
1 parent dd2a56f commit 18faa53
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion python/common/org/Python.java
Original file line number Diff line number Diff line change
Expand Up @@ -1752,7 +1752,10 @@ public static org.python.Object zip(org.python.Object item, org.python.types.Tup
try {
org.python.Iterable it = iters.get(i);
tuple.add(it.__next__());
} catch (IndexOutOfBoundsException | org.python.exceptions.StopIteration e) {
} catch (IndexOutOfBoundsException e) {
flag = true;
break;
} catch (org.python.exceptions.StopIteration e) {
flag = true;
break;
}
Expand Down

0 comments on commit 18faa53

Please sign in to comment.