public class org.eclipse.jetty.server.HomeBaseWarning
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.eclipse.jetty.server.HomeBaseWarning
  super_class: java.lang.Object
{
  private static final org.eclipse.jetty.util.log.Logger LOG;
    descriptor: Lorg/eclipse/jetty/util/log/Logger;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 37
            ldc Lorg/eclipse/jetty/server/HomeBaseWarning;
            invokestatic org.eclipse.jetty.util.log.Log.getLogger:(Ljava/lang/Class;)Lorg/eclipse/jetty/util/log/Logger;
            putstatic org.eclipse.jetty.server.HomeBaseWarning.LOG:Lorg/eclipse/jetty/util/log/Logger;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=7, args_size=1
        start local 0 // org.eclipse.jetty.server.HomeBaseWarning this
         0: .line 39
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 41
            iconst_0
            istore 1 /* showWarn */
        start local 1 // boolean showWarn
         2: .line 43
            ldc "jetty.home"
            invokestatic java.lang.System.getProperty:(Ljava/lang/String;)Ljava/lang/String;
            astore 2 /* home */
        start local 2 // java.lang.String home
         3: .line 44
            ldc "jetty.base"
            invokestatic java.lang.System.getProperty:(Ljava/lang/String;)Ljava/lang/String;
            astore 3 /* base */
        start local 3 // java.lang.String base
         4: .line 46
            aload 3 /* base */
            invokestatic org.eclipse.jetty.util.StringUtil.isBlank:(Ljava/lang/String;)Z
            ifeq 6
         5: .line 50
            return
         6: .line 53
      StackMap locals: org.eclipse.jetty.server.HomeBaseWarning int java.lang.String java.lang.String
      StackMap stack:
            new java.io.File
            dup
            aload 2 /* home */
            invokespecial java.io.File.<init>:(Ljava/lang/String;)V
            invokevirtual java.io.File.toPath:()Ljava/nio/file/Path;
            astore 4 /* homePath */
        start local 4 // java.nio.file.Path homePath
         7: .line 54
            new java.io.File
            dup
            aload 3 /* base */
            invokespecial java.io.File.<init>:(Ljava/lang/String;)V
            invokevirtual java.io.File.toPath:()Ljava/nio/file/Path;
            astore 5 /* basePath */
        start local 5 // java.nio.file.Path basePath
         8: .line 58
            aload 4 /* homePath */
            aload 5 /* basePath */
            invokestatic java.nio.file.Files.isSameFile:(Ljava/nio/file/Path;Ljava/nio/file/Path;)Z
            istore 1 /* showWarn */
         9: .line 59
            goto 13
        10: .line 60
      StackMap locals: org.eclipse.jetty.server.HomeBaseWarning int java.lang.String java.lang.String java.nio.file.Path java.nio.file.Path
      StackMap stack: java.io.IOException
            astore 6 /* e */
        start local 6 // java.io.IOException e
        11: .line 62
            getstatic org.eclipse.jetty.server.HomeBaseWarning.LOG:Lorg/eclipse/jetty/util/log/Logger;
            aload 6 /* e */
            invokeinterface org.eclipse.jetty.util.log.Logger.ignore:(Ljava/lang/Throwable;)V
        12: .line 64
            return
        end local 6 // java.io.IOException e
        13: .line 67
      StackMap locals:
      StackMap stack:
            iload 1 /* showWarn */
            ifeq 18
        14: .line 69
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            astore 6 /* warn */
        start local 6 // java.lang.StringBuilder warn
        15: .line 70
            aload 6 /* warn */
            ldc "This instance of Jetty is not running from a separate {jetty.base} directory"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        16: .line 71
            aload 6 /* warn */
            ldc ", this is not recommended.  See documentation at http://www.eclipse.org/jetty/documentation/current/startup.html"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        17: .line 72
            getstatic org.eclipse.jetty.server.HomeBaseWarning.LOG:Lorg/eclipse/jetty/util/log/Logger;
            ldc "{}"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 6 /* warn */
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            aastore
            invokeinterface org.eclipse.jetty.util.log.Logger.warn:(Ljava/lang/String;[Ljava/lang/Object;)V
        end local 6 // java.lang.StringBuilder warn
        18: .line 74
      StackMap locals:
      StackMap stack:
            return
        end local 5 // java.nio.file.Path basePath
        end local 4 // java.nio.file.Path homePath
        end local 3 // java.lang.String base
        end local 2 // java.lang.String home
        end local 1 // boolean showWarn
        end local 0 // org.eclipse.jetty.server.HomeBaseWarning this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   19     0      this  Lorg/eclipse/jetty/server/HomeBaseWarning;
            2   19     1  showWarn  Z
            3   19     2      home  Ljava/lang/String;
            4   19     3      base  Ljava/lang/String;
            7   19     4  homePath  Ljava/nio/file/Path;
            8   19     5  basePath  Ljava/nio/file/Path;
           11   13     6         e  Ljava/io/IOException;
           15   18     6      warn  Ljava/lang/StringBuilder;
      Exception table:
        from    to  target  type
           8     9      10  Class java.io.IOException
}
SourceFile: "HomeBaseWarning.java"