kazurayam / materialstore

A domain-specific file system to store "materials" (screenshots, HTML, JSON, XML) collected during End-to-End testings using Selenium WebDriver etc. Features to make "diff" and compiling HTML reports are also included. This is written in pure Java8
Apache License 2.0
0 stars 0 forks source link

add MaterialProductGroup.Builder#sort(List<String>) method #349

Closed kazurayam closed 1 year ago

kazurayam commented 1 year ago

https://github.com/kazurayam/materialstore/blob/0.12.1/base/src/main/java/com/kazurayam/materialstore/base/reduce/MaterialProductGroup.java

I have

        public Builder sort(String... args) {
            SortKeys sortKeys = new SortKeys(args);
            return this.setSortKeys(sortKeys);
        }

I would need to add alternative

        public Builder sort(List<String> args) {
            ...
        }
kazurayam commented 1 year ago

Not needed. Will not do this.