Skip to content

Commit eabc4d2

Browse files
committed
Fix warning: [this-escape] possible 'this' escape before subclass is fully initialized
1 parent 4d49427 commit eabc4d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/modules/zlib/NativeZlibCompObject.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
// Note: some IDEs mark this class as inaccessible in PFactory, but changing this to
4848
// public will cause a warning: [this-escape] possible 'this' escape before subclass is fully
4949
// initialized
50-
public class NativeZlibCompObject extends ZLibCompObject {
50+
public final class NativeZlibCompObject extends ZLibCompObject {
5151
private NFIZlibSupport.Pointer pointer;
5252
byte[] lastInput;
5353

0 commit comments

Comments
 (0)