public class org.apache.logging.log4j.core.appender.rolling.action.PathSortByModificationTime implements org.apache.logging.log4j.core.appender.rolling.action.PathSorter, java.io.Serializable
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.logging.log4j.core.appender.rolling.action.PathSortByModificationTime
  super_class: java.lang.Object
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 1

  private final boolean recentFirst;
    descriptor: Z
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int multiplier;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.logging.log4j.core.appender.rolling.action.PathSortByModificationTime this
        start local 1 // boolean recentFirst
         0: .line 43
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 44
            aload 0 /* this */
            iload 1 /* recentFirst */
            putfield org.apache.logging.log4j.core.appender.rolling.action.PathSortByModificationTime.recentFirst:Z
         2: .line 45
            aload 0 /* this */
            iload 1 /* recentFirst */
            ifeq 3
            iconst_1
            goto 4
      StackMap locals: org.apache.logging.log4j.core.appender.rolling.action.PathSortByModificationTime int
      StackMap stack: org.apache.logging.log4j.core.appender.rolling.action.PathSortByModificationTime
         3: iconst_m1
      StackMap locals: org.apache.logging.log4j.core.appender.rolling.action.PathSortByModificationTime int
      StackMap stack: org.apache.logging.log4j.core.appender.rolling.action.PathSortByModificationTime int
         4: putfield org.apache.logging.log4j.core.appender.rolling.action.PathSortByModificationTime.multiplier:I
         5: .line 46
            return
        end local 1 // boolean recentFirst
        end local 0 // org.apache.logging.log4j.core.appender.rolling.action.PathSortByModificationTime this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    6     0         this  Lorg/apache/logging/log4j/core/appender/rolling/action/PathSortByModificationTime;
            0    6     1  recentFirst  Z
    MethodParameters:
             Name  Flags
      recentFirst  final

  public static org.apache.logging.log4j.core.appender.rolling.action.PathSorter createSorter(boolean);
    descriptor: (Z)Lorg/apache/logging/log4j/core/appender/rolling/action/PathSorter;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // boolean recentFirst
         0: .line 57
            new org.apache.logging.log4j.core.appender.rolling.action.PathSortByModificationTime
            dup
            iload 0 /* recentFirst */
            invokespecial org.apache.logging.log4j.core.appender.rolling.action.PathSortByModificationTime.<init>:(Z)V
            areturn
        end local 0 // boolean recentFirst
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    1     0  recentFirst  Z
    RuntimeVisibleAnnotations: 
      org.apache.logging.log4j.core.config.plugins.PluginFactory()
    RuntimeVisibleParameterAnnotations: 
      0:
        org.apache.logging.log4j.core.config.plugins.PluginAttribute(value = "recentFirst", defaultBoolean = true)
    MethodParameters:
             Name  Flags
      recentFirst  final

  public boolean isRecentFirst();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.logging.log4j.core.appender.rolling.action.PathSortByModificationTime this
         0: .line 66
            aload 0 /* this */
            getfield org.apache.logging.log4j.core.appender.rolling.action.PathSortByModificationTime.recentFirst:Z
            ireturn
        end local 0 // org.apache.logging.log4j.core.appender.rolling.action.PathSortByModificationTime this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/logging/log4j/core/appender/rolling/action/PathSortByModificationTime;

  public int compare(org.apache.logging.log4j.core.appender.rolling.action.PathWithAttributes, org.apache.logging.log4j.core.appender.rolling.action.PathWithAttributes);
    descriptor: (Lorg/apache/logging/log4j/core/appender/rolling/action/PathWithAttributes;Lorg/apache/logging/log4j/core/appender/rolling/action/PathWithAttributes;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=8, args_size=3
        start local 0 // org.apache.logging.log4j.core.appender.rolling.action.PathSortByModificationTime this
        start local 1 // org.apache.logging.log4j.core.appender.rolling.action.PathWithAttributes path1
        start local 2 // org.apache.logging.log4j.core.appender.rolling.action.PathWithAttributes path2
         0: .line 76
            aload 1 /* path1 */
            invokevirtual org.apache.logging.log4j.core.appender.rolling.action.PathWithAttributes.getAttributes:()Ljava/nio/file/attribute/BasicFileAttributes;
            invokeinterface java.nio.file.attribute.BasicFileAttributes.lastModifiedTime:()Ljava/nio/file/attribute/FileTime;
            invokevirtual java.nio.file.attribute.FileTime.toMillis:()J
            lstore 3 /* lastModified1 */
        start local 3 // long lastModified1
         1: .line 77
            aload 2 /* path2 */
            invokevirtual org.apache.logging.log4j.core.appender.rolling.action.PathWithAttributes.getAttributes:()Ljava/nio/file/attribute/BasicFileAttributes;
            invokeinterface java.nio.file.attribute.BasicFileAttributes.lastModifiedTime:()Ljava/nio/file/attribute/FileTime;
            invokevirtual java.nio.file.attribute.FileTime.toMillis:()J
            lstore 5 /* lastModified2 */
        start local 5 // long lastModified2
         2: .line 78
            lload 5 /* lastModified2 */
            lload 3 /* lastModified1 */
            lsub
            invokestatic java.lang.Long.signum:(J)I
            istore 7 /* result */
        start local 7 // int result
         3: .line 79
            iload 7 /* result */
            ifne 8
         4: .line 83
            aload 2 /* path2 */
            invokevirtual org.apache.logging.log4j.core.appender.rolling.action.PathWithAttributes.getPath:()Ljava/nio/file/Path;
            aload 1 /* path1 */
            invokevirtual org.apache.logging.log4j.core.appender.rolling.action.PathWithAttributes.getPath:()Ljava/nio/file/Path;
            invokeinterface java.nio.file.Path.compareTo:(Ljava/nio/file/Path;)I
            istore 7 /* result */
         5: .line 84
            goto 8
      StackMap locals: org.apache.logging.log4j.core.appender.rolling.action.PathSortByModificationTime org.apache.logging.log4j.core.appender.rolling.action.PathWithAttributes org.apache.logging.log4j.core.appender.rolling.action.PathWithAttributes long long int
      StackMap stack: java.lang.ClassCastException
         6: pop
         7: .line 85
            aload 2 /* path2 */
            invokevirtual org.apache.logging.log4j.core.appender.rolling.action.PathWithAttributes.getPath:()Ljava/nio/file/Path;
            invokeinterface java.nio.file.Path.toString:()Ljava/lang/String;
            aload 1 /* path1 */
            invokevirtual org.apache.logging.log4j.core.appender.rolling.action.PathWithAttributes.getPath:()Ljava/nio/file/Path;
            invokeinterface java.nio.file.Path.toString:()Ljava/lang/String;
            invokevirtual java.lang.String.compareTo:(Ljava/lang/String;)I
            istore 7 /* result */
         8: .line 88
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.logging.log4j.core.appender.rolling.action.PathSortByModificationTime.multiplier:I
            iload 7 /* result */
            imul
            ireturn
        end local 7 // int result
        end local 5 // long lastModified2
        end local 3 // long lastModified1
        end local 2 // org.apache.logging.log4j.core.appender.rolling.action.PathWithAttributes path2
        end local 1 // org.apache.logging.log4j.core.appender.rolling.action.PathWithAttributes path1
        end local 0 // org.apache.logging.log4j.core.appender.rolling.action.PathSortByModificationTime this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    9     0           this  Lorg/apache/logging/log4j/core/appender/rolling/action/PathSortByModificationTime;
            0    9     1          path1  Lorg/apache/logging/log4j/core/appender/rolling/action/PathWithAttributes;
            0    9     2          path2  Lorg/apache/logging/log4j/core/appender/rolling/action/PathWithAttributes;
            1    9     3  lastModified1  J
            2    9     5  lastModified2  J
            3    9     7         result  I
      Exception table:
        from    to  target  type
           4     5       6  Class java.lang.ClassCastException
    MethodParameters:
       Name  Flags
      path1  final
      path2  final

  public int compare(java.lang.Object, java.lang.Object);
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;)I
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast org.apache.logging.log4j.core.appender.rolling.action.PathWithAttributes
            aload 2
            checkcast org.apache.logging.log4j.core.appender.rolling.action.PathWithAttributes
            invokevirtual org.apache.logging.log4j.core.appender.rolling.action.PathSortByModificationTime.compare:(Lorg/apache/logging/log4j/core/appender/rolling/action/PathWithAttributes;Lorg/apache/logging/log4j/core/appender/rolling/action/PathWithAttributes;)I
            ireturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
SourceFile: "PathSortByModificationTime.java"
    RuntimeVisibleAnnotations: 
      org.apache.logging.log4j.core.config.plugins.Plugin(name = "SortByModificationTime", category = "Core", printObject = true)