Uploaded image for project: 'Runtime'
  1. Runtime
  2. RUNTIME-604

Remove deprecated css concat pipeline

    • Icon: Improvement Improvement
    • Resolution: Fixed
    • Icon: Major Major
    • 2.3
    • 2.2
    • Plugin core
    • None

      in the core sitemap there is a deprecated pipeline to remove <map:match pattern="cssfilelist/-.css">
      a corresponding code (handling the -1 value) can be remove in the AllCSSReader, line 124

      List<String> cssFilesToImport = packetNum == -1 ? cssFiles : cssFiles.subList(__PACKET_SIZE * packetNum, Math.min(__PACKET_SIZE * (packetNum + 1), cssFiles.size()));
      

      can be replaced by

      List<String> cssFilesToImport = cssFiles.subList(__PACKET_SIZE * packetNum, Math.min(__PACKET_SIZE * (packetNum + 1), cssFiles.size()));
      

            raphael Raphaël Franchet
            raphael Raphaël Franchet
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved: