final class sun.util.PropertyResourceBundleCharset$PropertiesFileDecoder extends java.nio.charset.CharsetDecoder
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: sun.util.PropertyResourceBundleCharset$PropertiesFileDecoder
  super_class: java.nio.charset.CharsetDecoder
{
  private java.nio.charset.CharsetDecoder cdUTF_8;
    descriptor: Ljava/nio/charset/CharsetDecoder;
    flags: (0x0002) ACC_PRIVATE

  private java.nio.charset.CharsetDecoder cdISO_8859_1;
    descriptor: Ljava/nio/charset/CharsetDecoder;
    flags: (0x0002) ACC_PRIVATE

  final sun.util.PropertyResourceBundleCharset this$0;
    descriptor: Lsun/util/PropertyResourceBundleCharset;
    flags: (0x1010) ACC_FINAL, ACC_SYNTHETIC

  static final boolean $assertionsDisabled;
    descriptor: Z
    flags: (0x1018) ACC_STATIC, ACC_FINAL, ACC_SYNTHETIC

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 71
            ldc Lsun/util/PropertyResourceBundleCharset;
            invokevirtual java.lang.Class.desiredAssertionStatus:()Z
            ifne 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: putstatic sun.util.PropertyResourceBundleCharset$PropertiesFileDecoder.$assertionsDisabled:Z
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  protected void <init>(sun.util.PropertyResourceBundleCharset, java.nio.charset.Charset, float, float);
    descriptor: (Lsun/util/PropertyResourceBundleCharset;Ljava/nio/charset/Charset;FF)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=5, args_size=5
        start local 0 // sun.util.PropertyResourceBundleCharset$PropertiesFileDecoder this
        start local 2 // java.nio.charset.Charset cs
        start local 3 // float averageCharsPerByte
        start local 4 // float maxCharsPerByte
         0: .line 79
            aload 0 /* this */
            aload 1
            putfield sun.util.PropertyResourceBundleCharset$PropertiesFileDecoder.this$0:Lsun/util/PropertyResourceBundleCharset;
         1: .line 80
            aload 0 /* this */
            aload 2 /* cs */
            fload 3 /* averageCharsPerByte */
            fload 4 /* maxCharsPerByte */
            invokespecial java.nio.charset.CharsetDecoder.<init>:(Ljava/nio/charset/Charset;FF)V
         2: .line 73
            aload 0 /* this */
            getstatic java.nio.charset.StandardCharsets.UTF_8:Ljava/nio/charset/Charset;
            invokevirtual java.nio.charset.Charset.newDecoder:()Ljava/nio/charset/CharsetDecoder;
         3: .line 74
            getstatic java.nio.charset.CodingErrorAction.REPORT:Ljava/nio/charset/CodingErrorAction;
            invokevirtual java.nio.charset.CharsetDecoder.onMalformedInput:(Ljava/nio/charset/CodingErrorAction;)Ljava/nio/charset/CharsetDecoder;
         4: .line 75
            getstatic java.nio.charset.CodingErrorAction.REPORT:Ljava/nio/charset/CodingErrorAction;
            invokevirtual java.nio.charset.CharsetDecoder.onUnmappableCharacter:(Ljava/nio/charset/CodingErrorAction;)Ljava/nio/charset/CharsetDecoder;
            putfield sun.util.PropertyResourceBundleCharset$PropertiesFileDecoder.cdUTF_8:Ljava/nio/charset/CharsetDecoder;
         5: .line 76
            aload 0 /* this */
            aconst_null
            putfield sun.util.PropertyResourceBundleCharset$PropertiesFileDecoder.cdISO_8859_1:Ljava/nio/charset/CharsetDecoder;
         6: .line 81
            return
        end local 4 // float maxCharsPerByte
        end local 3 // float averageCharsPerByte
        end local 2 // java.nio.charset.Charset cs
        end local 0 // sun.util.PropertyResourceBundleCharset$PropertiesFileDecoder this
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0    7     0                 this  Lsun/util/PropertyResourceBundleCharset$PropertiesFileDecoder;
            0    7     2                   cs  Ljava/nio/charset/Charset;
            0    7     3  averageCharsPerByte  F
            0    7     4      maxCharsPerByte  F
    MethodParameters:
                     Name  Flags
      this$0               final
      cs                   
      averageCharsPerByte  
      maxCharsPerByte      

  protected java.nio.charset.CoderResult decodeLoop(java.nio.ByteBuffer, java.nio.CharBuffer);
    descriptor: (Ljava/nio/ByteBuffer;Ljava/nio/CharBuffer;)Ljava/nio/charset/CoderResult;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // sun.util.PropertyResourceBundleCharset$PropertiesFileDecoder this
        start local 1 // java.nio.ByteBuffer in
        start local 2 // java.nio.CharBuffer out
         0: .line 84
            aload 0 /* this */
            getfield sun.util.PropertyResourceBundleCharset$PropertiesFileDecoder.cdISO_8859_1:Ljava/nio/charset/CharsetDecoder;
            invokestatic java.util.Objects.nonNull:(Ljava/lang/Object;)Z
            ifeq 2
         1: .line 85
            aload 0 /* this */
            getfield sun.util.PropertyResourceBundleCharset$PropertiesFileDecoder.cdISO_8859_1:Ljava/nio/charset/CharsetDecoder;
            aload 1 /* in */
            aload 2 /* out */
            iconst_0
            invokevirtual java.nio.charset.CharsetDecoder.decode:(Ljava/nio/ByteBuffer;Ljava/nio/CharBuffer;Z)Ljava/nio/charset/CoderResult;
            areturn
         2: .line 87
      StackMap locals:
      StackMap stack:
            aload 1 /* in */
            invokevirtual java.nio.ByteBuffer.mark:()Ljava/nio/ByteBuffer;
            pop
         3: .line 88
            aload 2 /* out */
            invokevirtual java.nio.CharBuffer.mark:()Ljava/nio/CharBuffer;
            pop
         4: .line 90
            aload 0 /* this */
            getfield sun.util.PropertyResourceBundleCharset$PropertiesFileDecoder.cdUTF_8:Ljava/nio/charset/CharsetDecoder;
            aload 1 /* in */
            aload 2 /* out */
            iconst_0
            invokevirtual java.nio.charset.CharsetDecoder.decode:(Ljava/nio/ByteBuffer;Ljava/nio/CharBuffer;Z)Ljava/nio/charset/CoderResult;
            astore 3 /* cr */
        start local 3 // java.nio.charset.CoderResult cr
         5: .line 91
            aload 3 /* cr */
            invokevirtual java.nio.charset.CoderResult.isUnderflow:()Z
            ifne 7
            aload 3 /* cr */
            invokevirtual java.nio.charset.CoderResult.isOverflow:()Z
            ifne 7
         6: .line 92
            aload 0 /* this */
            getfield sun.util.PropertyResourceBundleCharset$PropertiesFileDecoder.this$0:Lsun/util/PropertyResourceBundleCharset;
            getfield sun.util.PropertyResourceBundleCharset.strictUTF8:Z
            ifeq 8
         7: .line 93
      StackMap locals: java.nio.charset.CoderResult
      StackMap stack:
            aload 3 /* cr */
            areturn
         8: .line 98
      StackMap locals:
      StackMap stack:
            getstatic sun.util.PropertyResourceBundleCharset$PropertiesFileDecoder.$assertionsDisabled:Z
            ifne 9
            aload 3 /* cr */
            invokevirtual java.nio.charset.CoderResult.isMalformed:()Z
            ifne 9
            aload 3 /* cr */
            invokevirtual java.nio.charset.CoderResult.isUnmappable:()Z
            ifne 9
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         9: .line 99
      StackMap locals:
      StackMap stack:
            aload 1 /* in */
            invokevirtual java.nio.ByteBuffer.reset:()Ljava/nio/ByteBuffer;
            pop
        10: .line 100
            aload 2 /* out */
            invokevirtual java.nio.CharBuffer.reset:()Ljava/nio/CharBuffer;
            pop
        11: .line 101
            aload 0 /* this */
            getstatic java.nio.charset.StandardCharsets.ISO_8859_1:Ljava/nio/charset/Charset;
            invokevirtual java.nio.charset.Charset.newDecoder:()Ljava/nio/charset/CharsetDecoder;
            putfield sun.util.PropertyResourceBundleCharset$PropertiesFileDecoder.cdISO_8859_1:Ljava/nio/charset/CharsetDecoder;
        12: .line 102
            aload 0 /* this */
            getfield sun.util.PropertyResourceBundleCharset$PropertiesFileDecoder.cdISO_8859_1:Ljava/nio/charset/CharsetDecoder;
            aload 1 /* in */
            aload 2 /* out */
            iconst_0
            invokevirtual java.nio.charset.CharsetDecoder.decode:(Ljava/nio/ByteBuffer;Ljava/nio/CharBuffer;Z)Ljava/nio/charset/CoderResult;
            areturn
        end local 3 // java.nio.charset.CoderResult cr
        end local 2 // java.nio.CharBuffer out
        end local 1 // java.nio.ByteBuffer in
        end local 0 // sun.util.PropertyResourceBundleCharset$PropertiesFileDecoder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   13     0  this  Lsun/util/PropertyResourceBundleCharset$PropertiesFileDecoder;
            0   13     1    in  Ljava/nio/ByteBuffer;
            0   13     2   out  Ljava/nio/CharBuffer;
            5   13     3    cr  Ljava/nio/charset/CoderResult;
    MethodParameters:
      Name  Flags
      in    
      out   
}
SourceFile: "PropertyResourceBundleCharset.java"
NestHost: sun.util.PropertyResourceBundleCharset
InnerClasses:
  private final PropertiesFileDecoder = sun.util.PropertyResourceBundleCharset$PropertiesFileDecoder of sun.util.PropertyResourceBundleCharset