updates after review

This commit is contained in:
zzz
2012-01-06 00:38:33 +00:00
parent a2d6dd2c5b
commit 708e943c44
3 changed files with 4 additions and 3 deletions

View File

@@ -614,7 +614,8 @@ public class Storage
} catch (Exception ex) { } catch (Exception ex) {
ex.printStackTrace(); ex.printStackTrace();
} }
} } }
}
_filterNameCache.put(name, rv); _filterNameCache.put(name, rv);
return rv; return rv;
} }

View File

@@ -10,7 +10,7 @@ import org.mortbay.http.Version;
public class LogsHelper extends HelperBase { public class LogsHelper extends HelperBase {
public LogsHelper() {} public LogsHelper() {}
/** @since 0.8.11 */ /** @since 0.8.12 */
public String getJettyVersion() { public String getJettyVersion() {
return Version.getImplVersion(); return Version.getImplVersion();
} }

View File

@@ -26,7 +26,6 @@ public class ResettableGZIPInputStream extends InflaterInputStream {
private final ExtraByteInputStream _extraByteInputStream; private final ExtraByteInputStream _extraByteInputStream;
/** keep a typesafe copy of this */ /** keep a typesafe copy of this */
private final LookaheadInputStream _lookaheadStream; private final LookaheadInputStream _lookaheadStream;
private static final byte[] _oneDummyByte = new byte[1];
private final InputStream _sequenceStream = null; private final InputStream _sequenceStream = null;
private final CRC32 _crc32; private final CRC32 _crc32;
private final byte _buf1[] = new byte[1]; private final byte _buf1[] = new byte[1];
@@ -312,6 +311,7 @@ public class ResettableGZIPInputStream extends InflaterInputStream {
* *
* http://code.google.com/p/google-apps-sso-sample/issues/detail?id=8 * http://code.google.com/p/google-apps-sso-sample/issues/detail?id=8
* *
* @since 0.8.12
*/ */
private static class ExtraByteInputStream extends FilterInputStream { private static class ExtraByteInputStream extends FilterInputStream {
private static final byte DUMMY = 0; private static final byte DUMMY = 0;