public class org.springframework.web.servlet.resource.CssLinkResourceTransformer extends org.springframework.web.servlet.resource.ResourceTransformerSupport
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.springframework.web.servlet.resource.CssLinkResourceTransformer
  super_class: org.springframework.web.servlet.resource.ResourceTransformerSupport
{
  private static final java.nio.charset.Charset DEFAULT_CHARSET;
    descriptor: Ljava/nio/charset/Charset;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private static final org.apache.commons.logging.Log logger;
    descriptor: Lorg/apache/commons/logging/Log;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private final java.util.List<org.springframework.web.servlet.resource.CssLinkResourceTransformer$LinkParser> linkParsers;
    descriptor: Ljava/util/List;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/List<Lorg/springframework/web/servlet/resource/CssLinkResourceTransformer$LinkParser;>;

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 52
            getstatic java.nio.charset.StandardCharsets.UTF_8:Ljava/nio/charset/Charset;
            putstatic org.springframework.web.servlet.resource.CssLinkResourceTransformer.DEFAULT_CHARSET:Ljava/nio/charset/Charset;
         1: .line 54
            ldc Lorg/springframework/web/servlet/resource/CssLinkResourceTransformer;
            invokestatic org.apache.commons.logging.LogFactory.getLog:(Ljava/lang/Class;)Lorg/apache/commons/logging/Log;
            putstatic org.springframework.web.servlet.resource.CssLinkResourceTransformer.logger:Lorg/apache/commons/logging/Log;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.springframework.web.servlet.resource.CssLinkResourceTransformer this
         0: .line 59
            aload 0 /* this */
            invokespecial org.springframework.web.servlet.resource.ResourceTransformerSupport.<init>:()V
         1: .line 56
            aload 0 /* this */
            new java.util.ArrayList
            dup
            iconst_2
            invokespecial java.util.ArrayList.<init>:(I)V
            putfield org.springframework.web.servlet.resource.CssLinkResourceTransformer.linkParsers:Ljava/util/List;
         2: .line 60
            aload 0 /* this */
            getfield org.springframework.web.servlet.resource.CssLinkResourceTransformer.linkParsers:Ljava/util/List;
            new org.springframework.web.servlet.resource.CssLinkResourceTransformer$ImportStatementLinkParser
            dup
            invokespecial org.springframework.web.servlet.resource.CssLinkResourceTransformer$ImportStatementLinkParser.<init>:()V
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         3: .line 61
            aload 0 /* this */
            getfield org.springframework.web.servlet.resource.CssLinkResourceTransformer.linkParsers:Ljava/util/List;
            new org.springframework.web.servlet.resource.CssLinkResourceTransformer$UrlFunctionLinkParser
            dup
            invokespecial org.springframework.web.servlet.resource.CssLinkResourceTransformer$UrlFunctionLinkParser.<init>:()V
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         4: .line 62
            return
        end local 0 // org.springframework.web.servlet.resource.CssLinkResourceTransformer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/springframework/web/servlet/resource/CssLinkResourceTransformer;

  public org.springframework.core.io.Resource transform(javax.servlet.http.HttpServletRequest, org.springframework.core.io.Resource, org.springframework.web.servlet.resource.ResourceTransformerChain);
    descriptor: (Ljavax/servlet/http/HttpServletRequest;Lorg/springframework/core/io/Resource;Lorg/springframework/web/servlet/resource/ResourceTransformerChain;)Lorg/springframework/core/io/Resource;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=15, args_size=4
        start local 0 // org.springframework.web.servlet.resource.CssLinkResourceTransformer this
        start local 1 // javax.servlet.http.HttpServletRequest request
        start local 2 // org.springframework.core.io.Resource resource
        start local 3 // org.springframework.web.servlet.resource.ResourceTransformerChain transformerChain
         0: .line 70
            aload 3 /* transformerChain */
            aload 1 /* request */
            aload 2 /* resource */
            invokeinterface org.springframework.web.servlet.resource.ResourceTransformerChain.transform:(Ljavax/servlet/http/HttpServletRequest;Lorg/springframework/core/io/Resource;)Lorg/springframework/core/io/Resource;
            astore 2 /* resource */
         1: .line 72
            aload 2 /* resource */
            invokeinterface org.springframework.core.io.Resource.getFilename:()Ljava/lang/String;
            astore 4 /* filename */
        start local 4 // java.lang.String filename
         2: .line 73
            ldc "css"
            aload 4 /* filename */
            invokestatic org.springframework.util.StringUtils.getFilenameExtension:(Ljava/lang/String;)Ljava/lang/String;
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 5
         3: .line 74
            aload 2 /* resource */
            instanceof org.springframework.web.servlet.resource.EncodedResourceResolver$EncodedResource
            ifne 5
         4: .line 75
            aload 2 /* resource */
            instanceof org.springframework.web.servlet.resource.GzipResourceResolver$GzippedResource
            ifeq 6
         5: .line 76
      StackMap locals: java.lang.String
      StackMap stack:
            aload 2 /* resource */
            areturn
         6: .line 79
      StackMap locals:
      StackMap stack:
            aload 2 /* resource */
            invokeinterface org.springframework.core.io.Resource.getInputStream:()Ljava/io/InputStream;
            invokestatic org.springframework.util.FileCopyUtils.copyToByteArray:(Ljava/io/InputStream;)[B
            astore 5 /* bytes */
        start local 5 // byte[] bytes
         7: .line 80
            new java.lang.String
            dup
            aload 5 /* bytes */
            getstatic org.springframework.web.servlet.resource.CssLinkResourceTransformer.DEFAULT_CHARSET:Ljava/nio/charset/Charset;
            invokespecial java.lang.String.<init>:([BLjava/nio/charset/Charset;)V
            astore 6 /* content */
        start local 6 // java.lang.String content
         8: .line 82
            new java.util.TreeSet
            dup
            invokespecial java.util.TreeSet.<init>:()V
            astore 7 /* links */
        start local 7 // java.util.SortedSet links
         9: .line 83
            aload 0 /* this */
            getfield org.springframework.web.servlet.resource.CssLinkResourceTransformer.linkParsers:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 9
            goto 12
      StackMap locals: org.springframework.web.servlet.resource.CssLinkResourceTransformer javax.servlet.http.HttpServletRequest org.springframework.core.io.Resource org.springframework.web.servlet.resource.ResourceTransformerChain java.lang.String byte[] java.lang.String java.util.SortedSet top java.util.Iterator
      StackMap stack:
        10: aload 9
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.springframework.web.servlet.resource.CssLinkResourceTransformer$LinkParser
            astore 8 /* parser */
        start local 8 // org.springframework.web.servlet.resource.CssLinkResourceTransformer$LinkParser parser
        11: .line 84
            aload 8 /* parser */
            aload 6 /* content */
            aload 7 /* links */
            invokeinterface org.springframework.web.servlet.resource.CssLinkResourceTransformer$LinkParser.parse:(Ljava/lang/String;Ljava/util/SortedSet;)V
        end local 8 // org.springframework.web.servlet.resource.CssLinkResourceTransformer$LinkParser parser
        12: .line 83
      StackMap locals:
      StackMap stack:
            aload 9
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 10
        13: .line 87
            aload 7 /* links */
            invokeinterface java.util.SortedSet.isEmpty:()Z
            ifeq 15
        14: .line 88
            aload 2 /* resource */
            areturn
        15: .line 91
      StackMap locals: org.springframework.web.servlet.resource.CssLinkResourceTransformer javax.servlet.http.HttpServletRequest org.springframework.core.io.Resource org.springframework.web.servlet.resource.ResourceTransformerChain java.lang.String byte[] java.lang.String java.util.SortedSet
      StackMap stack:
            iconst_0
            istore 8 /* index */
        start local 8 // int index
        16: .line 92
            new java.io.StringWriter
            dup
            invokespecial java.io.StringWriter.<init>:()V
            astore 9 /* writer */
        start local 9 // java.io.StringWriter writer
        17: .line 93
            aload 7 /* links */
            invokeinterface java.util.SortedSet.iterator:()Ljava/util/Iterator;
            astore 11
            goto 29
      StackMap locals: org.springframework.web.servlet.resource.CssLinkResourceTransformer javax.servlet.http.HttpServletRequest org.springframework.core.io.Resource org.springframework.web.servlet.resource.ResourceTransformerChain java.lang.String byte[] java.lang.String java.util.SortedSet int java.io.StringWriter top java.util.Iterator
      StackMap stack:
        18: aload 11
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.springframework.web.servlet.resource.CssLinkResourceTransformer$ContentChunkInfo
            astore 10 /* linkContentChunkInfo */
        start local 10 // org.springframework.web.servlet.resource.CssLinkResourceTransformer$ContentChunkInfo linkContentChunkInfo
        19: .line 94
            aload 9 /* writer */
            aload 6 /* content */
            iload 8 /* index */
            aload 10 /* linkContentChunkInfo */
            invokevirtual org.springframework.web.servlet.resource.CssLinkResourceTransformer$ContentChunkInfo.getStart:()I
            invokevirtual java.lang.String.substring:(II)Ljava/lang/String;
            invokevirtual java.io.StringWriter.write:(Ljava/lang/String;)V
        20: .line 95
            aload 6 /* content */
            aload 10 /* linkContentChunkInfo */
            invokevirtual org.springframework.web.servlet.resource.CssLinkResourceTransformer$ContentChunkInfo.getStart:()I
            aload 10 /* linkContentChunkInfo */
            invokevirtual org.springframework.web.servlet.resource.CssLinkResourceTransformer$ContentChunkInfo.getEnd:()I
            invokevirtual java.lang.String.substring:(II)Ljava/lang/String;
            astore 12 /* link */
        start local 12 // java.lang.String link
        21: .line 96
            aconst_null
            astore 13 /* newLink */
        start local 13 // java.lang.String newLink
        22: .line 97
            aload 0 /* this */
            aload 12 /* link */
            invokevirtual org.springframework.web.servlet.resource.CssLinkResourceTransformer.hasScheme:(Ljava/lang/String;)Z
            ifne 25
        23: .line 98
            aload 0 /* this */
            aload 12 /* link */
            aload 1 /* request */
            invokevirtual org.springframework.web.servlet.resource.CssLinkResourceTransformer.toAbsolutePath:(Ljava/lang/String;Ljavax/servlet/http/HttpServletRequest;)Ljava/lang/String;
            astore 14 /* absolutePath */
        start local 14 // java.lang.String absolutePath
        24: .line 99
            aload 0 /* this */
            aload 14 /* absolutePath */
            aload 1 /* request */
            aload 2 /* resource */
            aload 3 /* transformerChain */
            invokevirtual org.springframework.web.servlet.resource.CssLinkResourceTransformer.resolveUrlPath:(Ljava/lang/String;Ljavax/servlet/http/HttpServletRequest;Lorg/springframework/core/io/Resource;Lorg/springframework/web/servlet/resource/ResourceTransformerChain;)Ljava/lang/String;
            astore 13 /* newLink */
        end local 14 // java.lang.String absolutePath
        25: .line 101
      StackMap locals: org.springframework.web.servlet.resource.CssLinkResourceTransformer javax.servlet.http.HttpServletRequest org.springframework.core.io.Resource org.springframework.web.servlet.resource.ResourceTransformerChain java.lang.String byte[] java.lang.String java.util.SortedSet int java.io.StringWriter org.springframework.web.servlet.resource.CssLinkResourceTransformer$ContentChunkInfo java.util.Iterator java.lang.String java.lang.String
      StackMap stack:
            aload 9 /* writer */
            aload 13 /* newLink */
            ifnull 26
            aload 13 /* newLink */
            goto 27
      StackMap locals:
      StackMap stack: java.io.StringWriter
        26: aload 12 /* link */
      StackMap locals: org.springframework.web.servlet.resource.CssLinkResourceTransformer javax.servlet.http.HttpServletRequest org.springframework.core.io.Resource org.springframework.web.servlet.resource.ResourceTransformerChain java.lang.String byte[] java.lang.String java.util.SortedSet int java.io.StringWriter org.springframework.web.servlet.resource.CssLinkResourceTransformer$ContentChunkInfo java.util.Iterator java.lang.String java.lang.String
      StackMap stack: java.io.StringWriter java.lang.String
        27: invokevirtual java.io.StringWriter.write:(Ljava/lang/String;)V
        28: .line 102
            aload 10 /* linkContentChunkInfo */
            invokevirtual org.springframework.web.servlet.resource.CssLinkResourceTransformer$ContentChunkInfo.getEnd:()I
            istore 8 /* index */
        end local 13 // java.lang.String newLink
        end local 12 // java.lang.String link
        end local 10 // org.springframework.web.servlet.resource.CssLinkResourceTransformer$ContentChunkInfo linkContentChunkInfo
        29: .line 93
      StackMap locals: org.springframework.web.servlet.resource.CssLinkResourceTransformer javax.servlet.http.HttpServletRequest org.springframework.core.io.Resource org.springframework.web.servlet.resource.ResourceTransformerChain java.lang.String byte[] java.lang.String java.util.SortedSet int java.io.StringWriter top java.util.Iterator
      StackMap stack:
            aload 11
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 18
        30: .line 104
            aload 9 /* writer */
            aload 6 /* content */
            iload 8 /* index */
            invokevirtual java.lang.String.substring:(I)Ljava/lang/String;
            invokevirtual java.io.StringWriter.write:(Ljava/lang/String;)V
        31: .line 106
            new org.springframework.web.servlet.resource.TransformedResource
            dup
            aload 2 /* resource */
            aload 9 /* writer */
            invokevirtual java.io.StringWriter.toString:()Ljava/lang/String;
            getstatic org.springframework.web.servlet.resource.CssLinkResourceTransformer.DEFAULT_CHARSET:Ljava/nio/charset/Charset;
            invokevirtual java.lang.String.getBytes:(Ljava/nio/charset/Charset;)[B
            invokespecial org.springframework.web.servlet.resource.TransformedResource.<init>:(Lorg/springframework/core/io/Resource;[B)V
            areturn
        end local 9 // java.io.StringWriter writer
        end local 8 // int index
        end local 7 // java.util.SortedSet links
        end local 6 // java.lang.String content
        end local 5 // byte[] bytes
        end local 4 // java.lang.String filename
        end local 3 // org.springframework.web.servlet.resource.ResourceTransformerChain transformerChain
        end local 2 // org.springframework.core.io.Resource resource
        end local 1 // javax.servlet.http.HttpServletRequest request
        end local 0 // org.springframework.web.servlet.resource.CssLinkResourceTransformer this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0   32     0                  this  Lorg/springframework/web/servlet/resource/CssLinkResourceTransformer;
            0   32     1               request  Ljavax/servlet/http/HttpServletRequest;
            0   32     2              resource  Lorg/springframework/core/io/Resource;
            0   32     3      transformerChain  Lorg/springframework/web/servlet/resource/ResourceTransformerChain;
            2   32     4              filename  Ljava/lang/String;
            7   32     5                 bytes  [B
            8   32     6               content  Ljava/lang/String;
            9   32     7                 links  Ljava/util/SortedSet<Lorg/springframework/web/servlet/resource/CssLinkResourceTransformer$ContentChunkInfo;>;
           11   12     8                parser  Lorg/springframework/web/servlet/resource/CssLinkResourceTransformer$LinkParser;
           16   32     8                 index  I
           17   32     9                writer  Ljava/io/StringWriter;
           19   29    10  linkContentChunkInfo  Lorg/springframework/web/servlet/resource/CssLinkResourceTransformer$ContentChunkInfo;
           21   29    12                  link  Ljava/lang/String;
           22   29    13               newLink  Ljava/lang/String;
           24   25    14          absolutePath  Ljava/lang/String;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
                  Name  Flags
      request           
      resource          
      transformerChain  

  private boolean hasScheme(java.lang.String);
    descriptor: (Ljava/lang/String;)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.springframework.web.servlet.resource.CssLinkResourceTransformer this
        start local 1 // java.lang.String link
         0: .line 110
            aload 1 /* link */
            bipush 58
            invokevirtual java.lang.String.indexOf:(I)I
            istore 2 /* schemeIndex */
        start local 2 // int schemeIndex
         1: .line 111
            iload 2 /* schemeIndex */
            ifle 2
            aload 1 /* link */
            iconst_0
            iload 2 /* schemeIndex */
            invokevirtual java.lang.String.substring:(II)Ljava/lang/String;
            ldc "/"
            invokevirtual java.lang.String.contains:(Ljava/lang/CharSequence;)Z
            ifeq 3
      StackMap locals: int
      StackMap stack:
         2: aload 1 /* link */
            ldc "//"
            invokevirtual java.lang.String.indexOf:(Ljava/lang/String;)I
            ifeq 3
            iconst_0
            ireturn
      StackMap locals:
      StackMap stack:
         3: iconst_1
            ireturn
        end local 2 // int schemeIndex
        end local 1 // java.lang.String link
        end local 0 // org.springframework.web.servlet.resource.CssLinkResourceTransformer this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    4     0         this  Lorg/springframework/web/servlet/resource/CssLinkResourceTransformer;
            0    4     1         link  Ljava/lang/String;
            1    4     2  schemeIndex  I
    MethodParameters:
      Name  Flags
      link  
}
SourceFile: "CssLinkResourceTransformer.java"
NestMembers:
  org.springframework.web.servlet.resource.CssLinkResourceTransformer$AbstractLinkParser  org.springframework.web.servlet.resource.CssLinkResourceTransformer$ContentChunkInfo  org.springframework.web.servlet.resource.CssLinkResourceTransformer$ImportStatementLinkParser  org.springframework.web.servlet.resource.CssLinkResourceTransformer$LinkParser  org.springframework.web.servlet.resource.CssLinkResourceTransformer$UrlFunctionLinkParser
InnerClasses:
  protected abstract AbstractLinkParser = org.springframework.web.servlet.resource.CssLinkResourceTransformer$AbstractLinkParser of org.springframework.web.servlet.resource.CssLinkResourceTransformer
  private ContentChunkInfo = org.springframework.web.servlet.resource.CssLinkResourceTransformer$ContentChunkInfo of org.springframework.web.servlet.resource.CssLinkResourceTransformer
  private ImportStatementLinkParser = org.springframework.web.servlet.resource.CssLinkResourceTransformer$ImportStatementLinkParser of org.springframework.web.servlet.resource.CssLinkResourceTransformer
  protected abstract LinkParser = org.springframework.web.servlet.resource.CssLinkResourceTransformer$LinkParser of org.springframework.web.servlet.resource.CssLinkResourceTransformer
  private UrlFunctionLinkParser = org.springframework.web.servlet.resource.CssLinkResourceTransformer$UrlFunctionLinkParser of org.springframework.web.servlet.resource.CssLinkResourceTransformer
  final EncodedResource = org.springframework.web.servlet.resource.EncodedResourceResolver$EncodedResource of org.springframework.web.servlet.resource.EncodedResourceResolver
  final GzippedResource = org.springframework.web.servlet.resource.GzipResourceResolver$GzippedResource of org.springframework.web.servlet.resource.GzipResourceResolver