commit | 2286f23d40275463235006180cd7a91e9e57c4b1 | [log] [tgz] |
---|---|---|
author | Stuart McCulloch <mcculls@apache.org> | Fri Jun 15 13:27:53 2012 +0000 |
committer | Stuart McCulloch <mcculls@apache.org> | Fri Jun 15 13:27:53 2012 +0000 |
tree | fcc49a1a10fb66aa4e0e320e43a3a26da7750b6e | |
parent | bc672a217a7a888d1cc2d7d53216aba8a1cd6628 [diff] [blame] |
Latest bnd code git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@1350613 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/bundleplugin/src/main/java/aQute/lib/collections/LineCollection.java b/bundleplugin/src/main/java/aQute/lib/collections/LineCollection.java index a04ab36..0670712 100644 --- a/bundleplugin/src/main/java/aQute/lib/collections/LineCollection.java +++ b/bundleplugin/src/main/java/aQute/lib/collections/LineCollection.java
@@ -12,7 +12,7 @@ } public LineCollection(File in) throws IOException { - this(new InputStreamReader( new FileInputStream(in),"UTF-8")); + this(new InputStreamReader(new FileInputStream(in), "UTF-8")); } public LineCollection(Reader reader) throws IOException { @@ -37,7 +37,8 @@ if (next == null) reader.close(); return result; - } catch (Exception e) { + } + catch (Exception e) { // ignore return null; }