Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [jetty-dev] GzipFilter bug

Greetings,

This is not a bug. The notation GzipFilter.this is used here to explicitly access a field of the outer class from an inner class that has a field with the same name. Please see http://en.wikibooks.org/wiki/Java_Programming/Nested_Classes for more details.

-Michael

On Thu, Jul 21, 2011 at 7:03 AM, Guy Korland <Guy@xxxxxxxxxxxxxx> wrote:

It seems like there’s a self-assignment bug in GzipFilter lines 156-168

 

            {

                _mimeTypes = GzipFilter.this._mimeTypes;

                _bufferSize = GzipFilter.this._bufferSize;

                _minGzipSize = GzipFilter.this._minGzipSize;

            }


_______________________________________________
jetty-dev mailing list
jetty-dev@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/jetty-dev



Back to the top