public class org.h2.mvstore.cache.FilePathCache$FileCache extends org.h2.store.fs.FileBase
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.h2.mvstore.cache.FilePathCache$FileCache
  super_class: org.h2.store.fs.FileBase
{
  private static final int CACHE_BLOCK_SIZE;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 4096

  private final java.nio.channels.FileChannel base;
    descriptor: Ljava/nio/channels/FileChannel;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final org.h2.mvstore.cache.CacheLongKeyLIRS<java.nio.ByteBuffer> cache;
    descriptor: Lorg/h2/mvstore/cache/CacheLongKeyLIRS;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Lorg/h2/mvstore/cache/CacheLongKeyLIRS<Ljava/nio/ByteBuffer;>;

  void <init>(java.nio.channels.FileChannel);
    descriptor: (Ljava/nio/channels/FileChannel;)V
    flags: (0x0000) 
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // org.h2.mvstore.cache.FilePathCache$FileCache this
        start local 1 // java.nio.channels.FileChannel base
         0: .line 64
            aload 0 /* this */
            invokespecial org.h2.store.fs.FileBase.<init>:()V
         1: .line 58
            new org.h2.mvstore.cache.CacheLongKeyLIRS$Config
            dup
            invokespecial org.h2.mvstore.cache.CacheLongKeyLIRS$Config.<init>:()V
            astore 2 /* cc */
        start local 2 // org.h2.mvstore.cache.CacheLongKeyLIRS$Config cc
         2: .line 60
            aload 2 /* cc */
            ldc 1048576
            putfield org.h2.mvstore.cache.CacheLongKeyLIRS$Config.maxMemory:J
         3: .line 61
            aload 0 /* this */
            new org.h2.mvstore.cache.CacheLongKeyLIRS
            dup
            aload 2 /* cc */
            invokespecial org.h2.mvstore.cache.CacheLongKeyLIRS.<init>:(Lorg/h2/mvstore/cache/CacheLongKeyLIRS$Config;)V
            putfield org.h2.mvstore.cache.FilePathCache$FileCache.cache:Lorg/h2/mvstore/cache/CacheLongKeyLIRS;
        end local 2 // org.h2.mvstore.cache.CacheLongKeyLIRS$Config cc
         4: .line 65
            aload 0 /* this */
            aload 1 /* base */
            putfield org.h2.mvstore.cache.FilePathCache$FileCache.base:Ljava/nio/channels/FileChannel;
         5: .line 66
            return
        end local 1 // java.nio.channels.FileChannel base
        end local 0 // org.h2.mvstore.cache.FilePathCache$FileCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/h2/mvstore/cache/FilePathCache$FileCache;
            0    6     1  base  Ljava/nio/channels/FileChannel;
            2    4     2    cc  Lorg/h2/mvstore/cache/CacheLongKeyLIRS$Config;
    MethodParameters:
      Name  Flags
      base  

  protected void implCloseChannel();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.mvstore.cache.FilePathCache$FileCache this
         0: .line 70
            aload 0 /* this */
            getfield org.h2.mvstore.cache.FilePathCache$FileCache.base:Ljava/nio/channels/FileChannel;
            invokevirtual java.nio.channels.FileChannel.close:()V
         1: .line 71
            return
        end local 0 // org.h2.mvstore.cache.FilePathCache$FileCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/h2/mvstore/cache/FilePathCache$FileCache;
    Exceptions:
      throws java.io.IOException

  public java.nio.channels.FileChannel position(long);
    descriptor: (J)Ljava/nio/channels/FileChannel;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.h2.mvstore.cache.FilePathCache$FileCache this
        start local 1 // long newPosition
         0: .line 75
            aload 0 /* this */
            getfield org.h2.mvstore.cache.FilePathCache$FileCache.base:Ljava/nio/channels/FileChannel;
            lload 1 /* newPosition */
            invokevirtual java.nio.channels.FileChannel.position:(J)Ljava/nio/channels/FileChannel;
            pop
         1: .line 76
            aload 0 /* this */
            areturn
        end local 1 // long newPosition
        end local 0 // org.h2.mvstore.cache.FilePathCache$FileCache this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    2     0         this  Lorg/h2/mvstore/cache/FilePathCache$FileCache;
            0    2     1  newPosition  J
    Exceptions:
      throws java.io.IOException
    MethodParameters:
             Name  Flags
      newPosition  

  public long position();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.h2.mvstore.cache.FilePathCache$FileCache this
         0: .line 81
            aload 0 /* this */
            getfield org.h2.mvstore.cache.FilePathCache$FileCache.base:Ljava/nio/channels/FileChannel;
            invokevirtual java.nio.channels.FileChannel.position:()J
            lreturn
        end local 0 // org.h2.mvstore.cache.FilePathCache$FileCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/mvstore/cache/FilePathCache$FileCache;
    Exceptions:
      throws java.io.IOException

  public int read(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.h2.mvstore.cache.FilePathCache$FileCache this
        start local 1 // java.nio.ByteBuffer dst
         0: .line 86
            aload 0 /* this */
            getfield org.h2.mvstore.cache.FilePathCache$FileCache.base:Ljava/nio/channels/FileChannel;
            aload 1 /* dst */
            invokevirtual java.nio.channels.FileChannel.read:(Ljava/nio/ByteBuffer;)I
            ireturn
        end local 1 // java.nio.ByteBuffer dst
        end local 0 // org.h2.mvstore.cache.FilePathCache$FileCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/mvstore/cache/FilePathCache$FileCache;
            0    1     1   dst  Ljava/nio/ByteBuffer;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      dst   

  public synchronized int read(java.nio.ByteBuffer, long);
    descriptor: (Ljava/nio/ByteBuffer;J)I
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=5, locals=12, args_size=3
        start local 0 // org.h2.mvstore.cache.FilePathCache$FileCache this
        start local 1 // java.nio.ByteBuffer dst
        start local 2 // long position
         0: .line 91
            lload 2 /* position */
            invokestatic org.h2.mvstore.cache.FilePathCache$FileCache.getCachePos:(J)J
            lstore 4 /* cachePos */
        start local 4 // long cachePos
         1: .line 92
            lload 2 /* position */
            lload 4 /* cachePos */
            lsub
            l2i
            istore 6 /* off */
        start local 6 // int off
         2: .line 93
            sipush 4096
            iload 6 /* off */
            isub
            istore 7 /* len */
        start local 7 // int len
         3: .line 94
            iload 7 /* len */
            aload 1 /* dst */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            invokestatic java.lang.Math.min:(II)I
            istore 7 /* len */
         4: .line 95
            aload 0 /* this */
            getfield org.h2.mvstore.cache.FilePathCache$FileCache.cache:Lorg/h2/mvstore/cache/CacheLongKeyLIRS;
            lload 4 /* cachePos */
            invokevirtual org.h2.mvstore.cache.CacheLongKeyLIRS.get:(J)Ljava/lang/Object;
            checkcast java.nio.ByteBuffer
            astore 8 /* buff */
        start local 8 // java.nio.ByteBuffer buff
         5: .line 96
            aload 8 /* buff */
            ifnonnull 22
         6: .line 97
            sipush 4096
            invokestatic java.nio.ByteBuffer.allocate:(I)Ljava/nio/ByteBuffer;
            astore 8 /* buff */
         7: .line 98
            lload 4 /* cachePos */
            lstore 9 /* pos */
        start local 9 // long pos
         8: .line 100
      StackMap locals: org.h2.mvstore.cache.FilePathCache$FileCache java.nio.ByteBuffer long long int int java.nio.ByteBuffer long
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.mvstore.cache.FilePathCache$FileCache.base:Ljava/nio/channels/FileChannel;
            aload 8 /* buff */
            lload 9 /* pos */
            invokevirtual java.nio.channels.FileChannel.read:(Ljava/nio/ByteBuffer;J)I
            istore 11 /* read */
        start local 11 // int read
         9: .line 101
            iload 11 /* read */
            ifgt 11
        10: .line 102
            goto 15
        11: .line 104
      StackMap locals: int
      StackMap stack:
            aload 8 /* buff */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            ifne 13
        12: .line 105
            goto 15
        13: .line 107
      StackMap locals:
      StackMap stack:
            lload 9 /* pos */
            iload 11 /* read */
            i2l
            ladd
            lstore 9 /* pos */
        end local 11 // int read
        14: .line 99
            goto 8
        15: .line 109
      StackMap locals:
      StackMap stack:
            aload 8 /* buff */
            invokevirtual java.nio.ByteBuffer.position:()I
            istore 11 /* read */
        start local 11 // int read
        16: .line 110
            iload 11 /* read */
            sipush 4096
            if_icmpne 19
        17: .line 111
            aload 0 /* this */
            getfield org.h2.mvstore.cache.FilePathCache$FileCache.cache:Lorg/h2/mvstore/cache/CacheLongKeyLIRS;
            lload 4 /* cachePos */
            aload 8 /* buff */
            sipush 4096
            invokevirtual org.h2.mvstore.cache.CacheLongKeyLIRS.put:(JLjava/lang/Object;I)Ljava/lang/Object;
            pop
        18: .line 112
            goto 22
        19: .line 113
      StackMap locals: int
      StackMap stack:
            iload 11 /* read */
            ifgt 21
        20: .line 114
            iconst_m1
            ireturn
        21: .line 116
      StackMap locals:
      StackMap stack:
            iload 7 /* len */
            iload 11 /* read */
            iload 6 /* off */
            isub
            invokestatic java.lang.Math.min:(II)I
            istore 7 /* len */
        end local 11 // int read
        end local 9 // long pos
        22: .line 119
      StackMap locals:
      StackMap stack:
            aload 1 /* dst */
            aload 8 /* buff */
            invokevirtual java.nio.ByteBuffer.array:()[B
            iload 6 /* off */
            iload 7 /* len */
            invokevirtual java.nio.ByteBuffer.put:([BII)Ljava/nio/ByteBuffer;
            pop
        23: .line 120
            iload 7 /* len */
            ifne 24
            iconst_m1
            goto 25
      StackMap locals:
      StackMap stack:
        24: iload 7 /* len */
      StackMap locals:
      StackMap stack: int
        25: ireturn
        end local 8 // java.nio.ByteBuffer buff
        end local 7 // int len
        end local 6 // int off
        end local 4 // long cachePos
        end local 2 // long position
        end local 1 // java.nio.ByteBuffer dst
        end local 0 // org.h2.mvstore.cache.FilePathCache$FileCache this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   26     0      this  Lorg/h2/mvstore/cache/FilePathCache$FileCache;
            0   26     1       dst  Ljava/nio/ByteBuffer;
            0   26     2  position  J
            1   26     4  cachePos  J
            2   26     6       off  I
            3   26     7       len  I
            5   26     8      buff  Ljava/nio/ByteBuffer;
            8   22     9       pos  J
            9   14    11      read  I
           16   22    11      read  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
          Name  Flags
      dst       
      position  

  private static long getCachePos(long);
    descriptor: (J)J
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // long pos
         0: .line 124
            lload 0 /* pos */
            ldc 4096
            ldiv
            ldc 4096
            lmul
            lreturn
        end local 0 // long pos
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0   pos  J
    MethodParameters:
      Name  Flags
      pos   

  public long size();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.h2.mvstore.cache.FilePathCache$FileCache this
         0: .line 129
            aload 0 /* this */
            getfield org.h2.mvstore.cache.FilePathCache$FileCache.base:Ljava/nio/channels/FileChannel;
            invokevirtual java.nio.channels.FileChannel.size:()J
            lreturn
        end local 0 // org.h2.mvstore.cache.FilePathCache$FileCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/mvstore/cache/FilePathCache$FileCache;
    Exceptions:
      throws java.io.IOException

  public synchronized java.nio.channels.FileChannel truncate(long);
    descriptor: (J)Ljava/nio/channels/FileChannel;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.h2.mvstore.cache.FilePathCache$FileCache this
        start local 1 // long newSize
         0: .line 134
            aload 0 /* this */
            getfield org.h2.mvstore.cache.FilePathCache$FileCache.cache:Lorg/h2/mvstore/cache/CacheLongKeyLIRS;
            invokevirtual org.h2.mvstore.cache.CacheLongKeyLIRS.clear:()V
         1: .line 135
            aload 0 /* this */
            getfield org.h2.mvstore.cache.FilePathCache$FileCache.base:Ljava/nio/channels/FileChannel;
            lload 1 /* newSize */
            invokevirtual java.nio.channels.FileChannel.truncate:(J)Ljava/nio/channels/FileChannel;
            pop
         2: .line 136
            aload 0 /* this */
            areturn
        end local 1 // long newSize
        end local 0 // org.h2.mvstore.cache.FilePathCache$FileCache this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lorg/h2/mvstore/cache/FilePathCache$FileCache;
            0    3     1  newSize  J
    Exceptions:
      throws java.io.IOException
    MethodParameters:
         Name  Flags
      newSize  

  public synchronized int write(java.nio.ByteBuffer, long);
    descriptor: (Ljava/nio/ByteBuffer;J)I
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // org.h2.mvstore.cache.FilePathCache$FileCache this
        start local 1 // java.nio.ByteBuffer src
        start local 2 // long position
         0: .line 141
            aload 0 /* this */
            aload 1 /* src */
            lload 2 /* position */
            invokevirtual org.h2.mvstore.cache.FilePathCache$FileCache.clearCache:(Ljava/nio/ByteBuffer;J)V
         1: .line 142
            aload 0 /* this */
            getfield org.h2.mvstore.cache.FilePathCache$FileCache.base:Ljava/nio/channels/FileChannel;
            aload 1 /* src */
            lload 2 /* position */
            invokevirtual java.nio.channels.FileChannel.write:(Ljava/nio/ByteBuffer;J)I
            ireturn
        end local 2 // long position
        end local 1 // java.nio.ByteBuffer src
        end local 0 // org.h2.mvstore.cache.FilePathCache$FileCache this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/h2/mvstore/cache/FilePathCache$FileCache;
            0    2     1       src  Ljava/nio/ByteBuffer;
            0    2     2  position  J
    Exceptions:
      throws java.io.IOException
    MethodParameters:
          Name  Flags
      src       
      position  

  public synchronized int write(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)I
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.h2.mvstore.cache.FilePathCache$FileCache this
        start local 1 // java.nio.ByteBuffer src
         0: .line 147
            aload 0 /* this */
            aload 1 /* src */
            aload 0 /* this */
            invokevirtual org.h2.mvstore.cache.FilePathCache$FileCache.position:()J
            invokevirtual org.h2.mvstore.cache.FilePathCache$FileCache.clearCache:(Ljava/nio/ByteBuffer;J)V
         1: .line 148
            aload 0 /* this */
            getfield org.h2.mvstore.cache.FilePathCache$FileCache.base:Ljava/nio/channels/FileChannel;
            aload 1 /* src */
            invokevirtual java.nio.channels.FileChannel.write:(Ljava/nio/ByteBuffer;)I
            ireturn
        end local 1 // java.nio.ByteBuffer src
        end local 0 // org.h2.mvstore.cache.FilePathCache$FileCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/h2/mvstore/cache/FilePathCache$FileCache;
            0    2     1   src  Ljava/nio/ByteBuffer;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      src   

  private void clearCache(java.nio.ByteBuffer, long);
    descriptor: (Ljava/nio/ByteBuffer;J)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=7, args_size=3
        start local 0 // org.h2.mvstore.cache.FilePathCache$FileCache this
        start local 1 // java.nio.ByteBuffer src
        start local 2 // long position
         0: .line 152
            aload 0 /* this */
            getfield org.h2.mvstore.cache.FilePathCache$FileCache.cache:Lorg/h2/mvstore/cache/CacheLongKeyLIRS;
            invokevirtual org.h2.mvstore.cache.CacheLongKeyLIRS.size:()I
            ifle 8
         1: .line 153
            aload 1 /* src */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            istore 4 /* len */
        start local 4 // int len
         2: .line 154
            lload 2 /* position */
            invokestatic org.h2.mvstore.cache.FilePathCache$FileCache.getCachePos:(J)J
            lstore 5 /* p */
        start local 5 // long p
         3: .line 155
            goto 7
         4: .line 156
      StackMap locals: int long
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.mvstore.cache.FilePathCache$FileCache.cache:Lorg/h2/mvstore/cache/CacheLongKeyLIRS;
            lload 5 /* p */
            invokevirtual org.h2.mvstore.cache.CacheLongKeyLIRS.remove:(J)Ljava/lang/Object;
            pop
         5: .line 157
            lload 5 /* p */
            ldc 4096
            ladd
            lstore 5 /* p */
         6: .line 158
            iinc 4 /* len */ -4096
         7: .line 155
      StackMap locals:
      StackMap stack:
            iload 4 /* len */
            ifgt 4
        end local 5 // long p
        end local 4 // int len
         8: .line 161
      StackMap locals:
      StackMap stack:
            return
        end local 2 // long position
        end local 1 // java.nio.ByteBuffer src
        end local 0 // org.h2.mvstore.cache.FilePathCache$FileCache this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    9     0      this  Lorg/h2/mvstore/cache/FilePathCache$FileCache;
            0    9     1       src  Ljava/nio/ByteBuffer;
            0    9     2  position  J
            2    8     4       len  I
            3    8     5         p  J
    MethodParameters:
          Name  Flags
      src       
      position  

  public void force(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.h2.mvstore.cache.FilePathCache$FileCache this
        start local 1 // boolean metaData
         0: .line 165
            aload 0 /* this */
            getfield org.h2.mvstore.cache.FilePathCache$FileCache.base:Ljava/nio/channels/FileChannel;
            iload 1 /* metaData */
            invokevirtual java.nio.channels.FileChannel.force:(Z)V
         1: .line 166
            return
        end local 1 // boolean metaData
        end local 0 // org.h2.mvstore.cache.FilePathCache$FileCache this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/h2/mvstore/cache/FilePathCache$FileCache;
            0    2     1  metaData  Z
    Exceptions:
      throws java.io.IOException
    MethodParameters:
          Name  Flags
      metaData  

  public java.nio.channels.FileLock tryLock(long, long, boolean);
    descriptor: (JJZ)Ljava/nio/channels/FileLock;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=6, args_size=4
        start local 0 // org.h2.mvstore.cache.FilePathCache$FileCache this
        start local 1 // long position
        start local 3 // long size
        start local 5 // boolean shared
         0: .line 171
            aload 0 /* this */
            getfield org.h2.mvstore.cache.FilePathCache$FileCache.base:Ljava/nio/channels/FileChannel;
            lload 1 /* position */
            lload 3 /* size */
            iload 5 /* shared */
            invokevirtual java.nio.channels.FileChannel.tryLock:(JJZ)Ljava/nio/channels/FileLock;
            areturn
        end local 5 // boolean shared
        end local 3 // long size
        end local 1 // long position
        end local 0 // org.h2.mvstore.cache.FilePathCache$FileCache this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/h2/mvstore/cache/FilePathCache$FileCache;
            0    1     1  position  J
            0    1     3      size  J
            0    1     5    shared  Z
    Exceptions:
      throws java.io.IOException
    MethodParameters:
          Name  Flags
      position  
      size      
      shared    

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.h2.mvstore.cache.FilePathCache$FileCache this
         0: .line 176
            new java.lang.StringBuilder
            dup
            ldc "cache:"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield org.h2.mvstore.cache.FilePathCache$FileCache.base:Ljava/nio/channels/FileChannel;
            invokevirtual java.lang.Object.toString:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // org.h2.mvstore.cache.FilePathCache$FileCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/mvstore/cache/FilePathCache$FileCache;

  public java.nio.channels.SeekableByteChannel position(long);
    descriptor: (J)Ljava/nio/channels/SeekableByteChannel;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=2
         0: .line 1
            aload 0
            lload 1
            invokevirtual org.h2.mvstore.cache.FilePathCache$FileCache.position:(J)Ljava/nio/channels/FileChannel;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.io.IOException

  public java.nio.channels.SeekableByteChannel truncate(long);
    descriptor: (J)Ljava/nio/channels/SeekableByteChannel;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=2
         0: .line 1
            aload 0
            lload 1
            invokevirtual org.h2.mvstore.cache.FilePathCache$FileCache.truncate:(J)Ljava/nio/channels/FileChannel;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.io.IOException
}
SourceFile: "FilePathCache.java"
NestHost: org.h2.mvstore.cache.FilePathCache
InnerClasses:
  public Config = org.h2.mvstore.cache.CacheLongKeyLIRS$Config of org.h2.mvstore.cache.CacheLongKeyLIRS
  public FileCache = org.h2.mvstore.cache.FilePathCache$FileCache of org.h2.mvstore.cache.FilePathCache