Changeset 6849 in josm for trunk/src/oauth/signpost/basic
- Timestamp:
- 2014-02-13T21:10:18+01:00 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/oauth/signpost/basic/HttpURLConnectionResponseAdapter.java
r4231 r6849 16 16 17 17 public InputStream getContent() throws IOException { 18 return connection.getInputStream(); 18 try { 19 return connection.getInputStream(); 20 } catch (IOException e) { 21 return connection.getErrorStream(); 22 } 19 23 } 20 24
Note:
See TracChangeset
for help on using the changeset viewer.