public final class org.apache.http.impl.conn.SchemeRegistryFactory
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: org.apache.http.impl.conn.SchemeRegistryFactory
  super_class: java.lang.Object
{
  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.http.impl.conn.SchemeRegistryFactory this
         0: .line 43
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // org.apache.http.impl.conn.SchemeRegistryFactory this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/http/impl/conn/SchemeRegistryFactory;

  public static org.apache.http.conn.scheme.SchemeRegistry createDefault();
    descriptor: ()Lorg/apache/http/conn/scheme/SchemeRegistry;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=6, locals=1, args_size=0
         0: .line 50
            new org.apache.http.conn.scheme.SchemeRegistry
            dup
            invokespecial org.apache.http.conn.scheme.SchemeRegistry.<init>:()V
            astore 0 /* registry */
        start local 0 // org.apache.http.conn.scheme.SchemeRegistry registry
         1: .line 51
            aload 0 /* registry */
         2: .line 52
            new org.apache.http.conn.scheme.Scheme
            dup
            ldc "http"
            bipush 80
            invokestatic org.apache.http.conn.scheme.PlainSocketFactory.getSocketFactory:()Lorg/apache/http/conn/scheme/PlainSocketFactory;
            invokespecial org.apache.http.conn.scheme.Scheme.<init>:(Ljava/lang/String;ILorg/apache/http/conn/scheme/SchemeSocketFactory;)V
         3: .line 51
            invokevirtual org.apache.http.conn.scheme.SchemeRegistry.register:(Lorg/apache/http/conn/scheme/Scheme;)Lorg/apache/http/conn/scheme/Scheme;
            pop
         4: .line 53
            aload 0 /* registry */
         5: .line 54
            new org.apache.http.conn.scheme.Scheme
            dup
            ldc "https"
            sipush 443
            invokestatic org.apache.http.conn.ssl.SSLSocketFactory.getSocketFactory:()Lorg/apache/http/conn/ssl/SSLSocketFactory;
            invokespecial org.apache.http.conn.scheme.Scheme.<init>:(Ljava/lang/String;ILorg/apache/http/conn/scheme/SchemeSocketFactory;)V
         6: .line 53
            invokevirtual org.apache.http.conn.scheme.SchemeRegistry.register:(Lorg/apache/http/conn/scheme/Scheme;)Lorg/apache/http/conn/scheme/Scheme;
            pop
         7: .line 55
            aload 0 /* registry */
            areturn
        end local 0 // org.apache.http.conn.scheme.SchemeRegistry registry
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            1    8     0  registry  Lorg/apache/http/conn/scheme/SchemeRegistry;

  public static org.apache.http.conn.scheme.SchemeRegistry createSystemDefault();
    descriptor: ()Lorg/apache/http/conn/scheme/SchemeRegistry;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=6, locals=1, args_size=0
         0: .line 83
            new org.apache.http.conn.scheme.SchemeRegistry
            dup
            invokespecial org.apache.http.conn.scheme.SchemeRegistry.<init>:()V
            astore 0 /* registry */
        start local 0 // org.apache.http.conn.scheme.SchemeRegistry registry
         1: .line 84
            aload 0 /* registry */
         2: .line 85
            new org.apache.http.conn.scheme.Scheme
            dup
            ldc "http"
            bipush 80
            invokestatic org.apache.http.conn.scheme.PlainSocketFactory.getSocketFactory:()Lorg/apache/http/conn/scheme/PlainSocketFactory;
            invokespecial org.apache.http.conn.scheme.Scheme.<init>:(Ljava/lang/String;ILorg/apache/http/conn/scheme/SchemeSocketFactory;)V
         3: .line 84
            invokevirtual org.apache.http.conn.scheme.SchemeRegistry.register:(Lorg/apache/http/conn/scheme/Scheme;)Lorg/apache/http/conn/scheme/Scheme;
            pop
         4: .line 86
            aload 0 /* registry */
         5: .line 87
            new org.apache.http.conn.scheme.Scheme
            dup
            ldc "https"
            sipush 443
            invokestatic org.apache.http.conn.ssl.SSLSocketFactory.getSystemSocketFactory:()Lorg/apache/http/conn/ssl/SSLSocketFactory;
            invokespecial org.apache.http.conn.scheme.Scheme.<init>:(Ljava/lang/String;ILorg/apache/http/conn/scheme/SchemeSocketFactory;)V
         6: .line 86
            invokevirtual org.apache.http.conn.scheme.SchemeRegistry.register:(Lorg/apache/http/conn/scheme/Scheme;)Lorg/apache/http/conn/scheme/Scheme;
            pop
         7: .line 88
            aload 0 /* registry */
            areturn
        end local 0 // org.apache.http.conn.scheme.SchemeRegistry registry
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            1    8     0  registry  Lorg/apache/http/conn/scheme/SchemeRegistry;
}
SourceFile: "SchemeRegistryFactory.java"
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    RuntimeInvisibleAnnotations: 
      org.apache.http.annotation.Contract(threading = org.apache.http.annotation.ThreadingBehavior.SAFE:Lorg/apache/http/annotation/ThreadingBehavior;)