# HG changeset patch # User Jaroslav Tulach # Date 1213430648 -7200 # Node ID c2f0f73f0e02e3dd04f88961b945543b59ea08c7 # Parent ef3e24d5cb1c1f34e399eae6596a9c2fe967adf8 Shortening long line diff -r ef3e24d5cb1c -r c2f0f73f0e02 samples/consistency/src-api2.0/api/Lookup.java --- a/samples/consistency/src-api2.0/api/Lookup.java Sat Jun 14 10:04:06 2008 +0200 +++ b/samples/consistency/src-api2.0/api/Lookup.java Sat Jun 14 10:04:08 2008 +0200 @@ -51,7 +51,8 @@ if (!it.hasNext()) { return Collections.emptySet(); } else { - Set> result = new HashSet>(); + Set> result = + new HashSet>(); while (it.hasNext()) { result.add(it.next().getClass().asSubclass(clazz)); }