class io.vertx.ext.web.templ.freemarker.impl.FreeMarkerTemplateLoader implements freemarker.cache.TemplateLoader
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: io.vertx.ext.web.templ.freemarker.impl.FreeMarkerTemplateLoader
  super_class: java.lang.Object
{
  private final io.vertx.core.Vertx vertx;
    descriptor: Lio/vertx/core/Vertx;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  void <init>(io.vertx.core.Vertx);
    descriptor: (Lio/vertx/core/Vertx;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.templ.freemarker.impl.FreeMarkerTemplateLoader this
        start local 1 // io.vertx.core.Vertx vertx
         0: .line 33
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 34
            aload 0 /* this */
            aload 1 /* vertx */
            putfield io.vertx.ext.web.templ.freemarker.impl.FreeMarkerTemplateLoader.vertx:Lio/vertx/core/Vertx;
         2: .line 35
            return
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // io.vertx.ext.web.templ.freemarker.impl.FreeMarkerTemplateLoader this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lio/vertx/ext/web/templ/freemarker/impl/FreeMarkerTemplateLoader;
            0    3     1  vertx  Lio/vertx/core/Vertx;
    MethodParameters:
       Name  Flags
      vertx  

  public java.lang.Object findTemplateSource(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=2
        start local 0 // io.vertx.ext.web.templ.freemarker.impl.FreeMarkerTemplateLoader this
        start local 1 // java.lang.String name
         0: .line 41
            aload 0 /* this */
            getfield io.vertx.ext.web.templ.freemarker.impl.FreeMarkerTemplateLoader.vertx:Lio/vertx/core/Vertx;
            invokeinterface io.vertx.core.Vertx.fileSystem:()Lio/vertx/core/file/FileSystem;
            aload 1 /* name */
            invokeinterface io.vertx.core.file.FileSystem.existsBlocking:(Ljava/lang/String;)Z
            ifeq 7
         1: .line 42
            aload 0 /* this */
            getfield io.vertx.ext.web.templ.freemarker.impl.FreeMarkerTemplateLoader.vertx:Lio/vertx/core/Vertx;
            invokeinterface io.vertx.core.Vertx.fileSystem:()Lio/vertx/core/file/FileSystem;
         2: .line 43
            aload 1 /* name */
            invokeinterface io.vertx.core.file.FileSystem.readFileBlocking:(Ljava/lang/String;)Lio/vertx/core/buffer/Buffer;
         3: .line 44
            invokestatic java.nio.charset.Charset.defaultCharset:()Ljava/nio/charset/Charset;
            invokeinterface io.vertx.core.buffer.Buffer.toString:(Ljava/nio/charset/Charset;)Ljava/lang/String;
         4: .line 42
            astore 2 /* templ */
        start local 2 // java.lang.String templ
         5: .line 45
            new io.vertx.ext.web.templ.freemarker.impl.FreeMarkerTemplateLoader$StringTemplateSource
            dup
            aload 1 /* name */
            aload 2 /* templ */
            invokestatic java.lang.System.currentTimeMillis:()J
            invokespecial io.vertx.ext.web.templ.freemarker.impl.FreeMarkerTemplateLoader$StringTemplateSource.<init>:(Ljava/lang/String;Ljava/lang/String;J)V
         6: areturn
        end local 2 // java.lang.String templ
         7: .line 47
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
         8: .line 50
      StackMap locals:
      StackMap stack: java.lang.Exception
            astore 2 /* e */
        start local 2 // java.lang.Exception e
         9: .line 51
            new java.io.IOException
            dup
            aload 2 /* e */
            invokespecial java.io.IOException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 2 // java.lang.Exception e
        end local 1 // java.lang.String name
        end local 0 // io.vertx.ext.web.templ.freemarker.impl.FreeMarkerTemplateLoader this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   10     0   this  Lio/vertx/ext/web/templ/freemarker/impl/FreeMarkerTemplateLoader;
            0   10     1   name  Ljava/lang/String;
            5    7     2  templ  Ljava/lang/String;
            9   10     2      e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           0     6       8  Class java.lang.Exception
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      name  

  public long getLastModified(java.lang.Object);
    descriptor: (Ljava/lang/Object;)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.templ.freemarker.impl.FreeMarkerTemplateLoader this
        start local 1 // java.lang.Object templateSource
         0: .line 57
            aload 1 /* templateSource */
            checkcast io.vertx.ext.web.templ.freemarker.impl.FreeMarkerTemplateLoader$StringTemplateSource
            getfield io.vertx.ext.web.templ.freemarker.impl.FreeMarkerTemplateLoader$StringTemplateSource.lastModified:J
            lreturn
        end local 1 // java.lang.Object templateSource
        end local 0 // io.vertx.ext.web.templ.freemarker.impl.FreeMarkerTemplateLoader this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    1     0            this  Lio/vertx/ext/web/templ/freemarker/impl/FreeMarkerTemplateLoader;
            0    1     1  templateSource  Ljava/lang/Object;
    MethodParameters:
                Name  Flags
      templateSource  

  public java.io.Reader getReader(java.lang.Object, java.lang.String);
    descriptor: (Ljava/lang/Object;Ljava/lang/String;)Ljava/io/Reader;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.ext.web.templ.freemarker.impl.FreeMarkerTemplateLoader this
        start local 1 // java.lang.Object templateSource
        start local 2 // java.lang.String encoding
         0: .line 62
            new java.io.StringReader
            dup
            aload 1 /* templateSource */
            checkcast io.vertx.ext.web.templ.freemarker.impl.FreeMarkerTemplateLoader$StringTemplateSource
            getfield io.vertx.ext.web.templ.freemarker.impl.FreeMarkerTemplateLoader$StringTemplateSource.source:Ljava/lang/String;
            invokespecial java.io.StringReader.<init>:(Ljava/lang/String;)V
            areturn
        end local 2 // java.lang.String encoding
        end local 1 // java.lang.Object templateSource
        end local 0 // io.vertx.ext.web.templ.freemarker.impl.FreeMarkerTemplateLoader this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    1     0            this  Lio/vertx/ext/web/templ/freemarker/impl/FreeMarkerTemplateLoader;
            0    1     1  templateSource  Ljava/lang/Object;
            0    1     2        encoding  Ljava/lang/String;
    MethodParameters:
                Name  Flags
      templateSource  
      encoding        

  public void closeTemplateSource(java.lang.Object);
    descriptor: (Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=0, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.templ.freemarker.impl.FreeMarkerTemplateLoader this
        start local 1 // java.lang.Object templateSource
         0: .line 68
            return
        end local 1 // java.lang.Object templateSource
        end local 0 // io.vertx.ext.web.templ.freemarker.impl.FreeMarkerTemplateLoader this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    1     0            this  Lio/vertx/ext/web/templ/freemarker/impl/FreeMarkerTemplateLoader;
            0    1     1  templateSource  Ljava/lang/Object;
    MethodParameters:
                Name  Flags
      templateSource  
}
SourceFile: "FreeMarkerTemplateLoader.java"
NestMembers:
  io.vertx.ext.web.templ.freemarker.impl.FreeMarkerTemplateLoader$StringTemplateSource
InnerClasses:
  private StringTemplateSource = io.vertx.ext.web.templ.freemarker.impl.FreeMarkerTemplateLoader$StringTemplateSource of io.vertx.ext.web.templ.freemarker.impl.FreeMarkerTemplateLoader