| GZIPInputStream.java | GZIPInputStream.java | |||
|---|---|---|---|---|
| skipping to change at line 53 | skipping to change at line 53 | |||
| myinflater = true; | myinflater = true; | |||
| } | } | |||
| public GZIPInputStream(InputStream in, | public GZIPInputStream(InputStream in, | |||
| Inflater inflater, | Inflater inflater, | |||
| int size, | int size, | |||
| boolean close_in) throws IOException { | boolean close_in) throws IOException { | |||
| super(in, inflater, size, close_in); | super(in, inflater, size, close_in); | |||
| } | } | |||
| /** | ||||
| * @deprecated use getModifiedTime() | ||||
| * @return long modified time. | ||||
| */ | ||||
| public long getModifiedtime() { | public long getModifiedtime() { | |||
| return this.getModifiedTime(); | ||||
| } | ||||
| /** | ||||
| * @return the modified time. | ||||
| */ | ||||
| public long getModifiedTime() { | ||||
| return inflater.istate.getGZIPHeader().getModifiedTime(); | return inflater.istate.getGZIPHeader().getModifiedTime(); | |||
| } | } | |||
| public int getOS() { | public int getOS() { | |||
| return inflater.istate.getGZIPHeader().getOS(); | return inflater.istate.getGZIPHeader().getOS(); | |||
| } | } | |||
| public String getName() { | public String getName() { | |||
| return inflater.istate.getGZIPHeader().getName(); | return inflater.istate.getGZIPHeader().getName(); | |||
| } | } | |||
| End of changes. 2 change blocks. | ||||
| 0 lines changed or deleted | 11 lines changed or added | |||
This html diff was produced by rfcdiff 1.41. The latest version is available from http://tools.ietf.org/tools/rfcdiff/ | ||||