class org.springframework.boot.devtools.filewatch.FileSnapshot
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: org.springframework.boot.devtools.filewatch.FileSnapshot
  super_class: java.lang.Object
{
  private final java.io.File file;
    descriptor: Ljava/io/File;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

  private final long length;
    descriptor: J
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final long lastModified;
    descriptor: J
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  void <init>(java.io.File);
    descriptor: (Ljava/io/File;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.springframework.boot.devtools.filewatch.FileSnapshot this
        start local 1 // java.io.File file
         0: .line 38
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 39
            aload 1 /* file */
            ldc "File must not be null"
            invokestatic org.springframework.util.Assert.notNull:(Ljava/lang/Object;Ljava/lang/String;)V
         2: .line 40
            aload 1 /* file */
            invokevirtual java.io.File.isFile:()Z
            ifne 3
            aload 1 /* file */
            invokevirtual java.io.File.exists:()Z
            ifeq 3
            iconst_0
            goto 4
      StackMap locals: org.springframework.boot.devtools.filewatch.FileSnapshot java.io.File
      StackMap stack:
         3: iconst_1
      StackMap locals:
      StackMap stack: int
         4: ldc "File must not be a directory"
            invokestatic org.springframework.util.Assert.isTrue:(ZLjava/lang/String;)V
         5: .line 41
            aload 0 /* this */
            aload 1 /* file */
            putfield org.springframework.boot.devtools.filewatch.FileSnapshot.file:Ljava/io/File;
         6: .line 42
            aload 0 /* this */
            aload 1 /* file */
            invokevirtual java.io.File.exists:()Z
            putfield org.springframework.boot.devtools.filewatch.FileSnapshot.exists:Z
         7: .line 43
            aload 0 /* this */
            aload 1 /* file */
            invokevirtual java.io.File.length:()J
            putfield org.springframework.boot.devtools.filewatch.FileSnapshot.length:J
         8: .line 44
            aload 0 /* this */
            aload 1 /* file */
            invokevirtual java.io.File.lastModified:()J
            putfield org.springframework.boot.devtools.filewatch.FileSnapshot.lastModified:J
         9: .line 45
            return
        end local 1 // java.io.File file
        end local 0 // org.springframework.boot.devtools.filewatch.FileSnapshot this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Lorg/springframework/boot/devtools/filewatch/FileSnapshot;
            0   10     1  file  Ljava/io/File;
    MethodParameters:
      Name  Flags
      file  

  java.io.File getFile();
    descriptor: ()Ljava/io/File;
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.boot.devtools.filewatch.FileSnapshot this
         0: .line 48
            aload 0 /* this */
            getfield org.springframework.boot.devtools.filewatch.FileSnapshot.file:Ljava/io/File;
            areturn
        end local 0 // org.springframework.boot.devtools.filewatch.FileSnapshot this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/boot/devtools/filewatch/FileSnapshot;

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // org.springframework.boot.devtools.filewatch.FileSnapshot this
        start local 1 // java.lang.Object obj
         0: .line 53
            aload 0 /* this */
            aload 1 /* obj */
            if_acmpne 2
         1: .line 54
            iconst_1
            ireturn
         2: .line 56
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            ifnonnull 4
         3: .line 57
            iconst_0
            ireturn
         4: .line 59
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            instanceof org.springframework.boot.devtools.filewatch.FileSnapshot
            ifeq 17
         5: .line 60
            aload 1 /* obj */
            checkcast org.springframework.boot.devtools.filewatch.FileSnapshot
            astore 2 /* other */
        start local 2 // org.springframework.boot.devtools.filewatch.FileSnapshot other
         6: .line 61
            aload 0 /* this */
            getfield org.springframework.boot.devtools.filewatch.FileSnapshot.file:Ljava/io/File;
            aload 2 /* other */
            getfield org.springframework.boot.devtools.filewatch.FileSnapshot.file:Ljava/io/File;
            invokevirtual java.io.File.equals:(Ljava/lang/Object;)Z
            istore 3 /* equals */
        start local 3 // boolean equals
         7: .line 62
            iload 3 /* equals */
            ifeq 8
            aload 0 /* this */
            getfield org.springframework.boot.devtools.filewatch.FileSnapshot.exists:Z
            aload 2 /* other */
            getfield org.springframework.boot.devtools.filewatch.FileSnapshot.exists:Z
            if_icmpne 8
            iconst_1
            goto 9
      StackMap locals: org.springframework.boot.devtools.filewatch.FileSnapshot int
      StackMap stack:
         8: iconst_0
      StackMap locals:
      StackMap stack: int
         9: istore 3 /* equals */
        10: .line 63
            iload 3 /* equals */
            ifeq 11
            aload 0 /* this */
            getfield org.springframework.boot.devtools.filewatch.FileSnapshot.length:J
            aload 2 /* other */
            getfield org.springframework.boot.devtools.filewatch.FileSnapshot.length:J
            lcmp
            ifne 11
            iconst_1
            goto 12
      StackMap locals:
      StackMap stack:
        11: iconst_0
      StackMap locals:
      StackMap stack: int
        12: istore 3 /* equals */
        13: .line 64
            iload 3 /* equals */
            ifeq 14
            aload 0 /* this */
            getfield org.springframework.boot.devtools.filewatch.FileSnapshot.lastModified:J
            aload 2 /* other */
            getfield org.springframework.boot.devtools.filewatch.FileSnapshot.lastModified:J
            lcmp
            ifne 14
            iconst_1
            goto 15
      StackMap locals:
      StackMap stack:
        14: iconst_0
      StackMap locals:
      StackMap stack: int
        15: istore 3 /* equals */
        16: .line 65
            iload 3 /* equals */
            ireturn
        end local 3 // boolean equals
        end local 2 // org.springframework.boot.devtools.filewatch.FileSnapshot other
        17: .line 67
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* obj */
            invokespecial java.lang.Object.equals:(Ljava/lang/Object;)Z
            ireturn
        end local 1 // java.lang.Object obj
        end local 0 // org.springframework.boot.devtools.filewatch.FileSnapshot this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   18     0    this  Lorg/springframework/boot/devtools/filewatch/FileSnapshot;
            0   18     1     obj  Ljava/lang/Object;
            6   17     2   other  Lorg/springframework/boot/devtools/filewatch/FileSnapshot;
            7   17     3  equals  Z
    MethodParameters:
      Name  Flags
      obj   

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.springframework.boot.devtools.filewatch.FileSnapshot this
         0: .line 72
            aload 0 /* this */
            getfield org.springframework.boot.devtools.filewatch.FileSnapshot.file:Ljava/io/File;
            invokevirtual java.io.File.hashCode:()I
            istore 1 /* hashCode */
        start local 1 // int hashCode
         1: .line 73
            bipush 31
            iload 1 /* hashCode */
            imul
            aload 0 /* this */
            getfield org.springframework.boot.devtools.filewatch.FileSnapshot.exists:Z
            invokestatic java.lang.Boolean.hashCode:(Z)I
            iadd
            istore 1 /* hashCode */
         2: .line 74
            bipush 31
            iload 1 /* hashCode */
            imul
            aload 0 /* this */
            getfield org.springframework.boot.devtools.filewatch.FileSnapshot.length:J
            invokestatic java.lang.Long.hashCode:(J)I
            iadd
            istore 1 /* hashCode */
         3: .line 75
            bipush 31
            iload 1 /* hashCode */
            imul
            aload 0 /* this */
            getfield org.springframework.boot.devtools.filewatch.FileSnapshot.lastModified:J
            invokestatic java.lang.Long.hashCode:(J)I
            iadd
            istore 1 /* hashCode */
         4: .line 76
            iload 1 /* hashCode */
            ireturn
        end local 1 // int hashCode
        end local 0 // org.springframework.boot.devtools.filewatch.FileSnapshot this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lorg/springframework/boot/devtools/filewatch/FileSnapshot;
            1    5     1  hashCode  I

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.boot.devtools.filewatch.FileSnapshot this
         0: .line 81
            aload 0 /* this */
            getfield org.springframework.boot.devtools.filewatch.FileSnapshot.file:Ljava/io/File;
            invokevirtual java.io.File.toString:()Ljava/lang/String;
            areturn
        end local 0 // org.springframework.boot.devtools.filewatch.FileSnapshot this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/boot/devtools/filewatch/FileSnapshot;
}
SourceFile: "FileSnapshot.java"