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()));
      

          [RUNTIME-604] Remove deprecated css concat pipeline

          Raphaël Franchet made changes -
          Status Original: Resolved [ 5 ] New: Closed [ 6 ]
          Raphaël Franchet made changes -
          Resolution New: Fixed [ 1 ]
          Status Original: Open [ 1 ] New: Resolved [ 5 ]
          Laurence Aumeunier made changes -
          Assignee New: Raphaël Franchet [ raphael ]
          Raphaël Franchet created issue -

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

              Created:
              Updated:
              Resolved: