Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for toProblemGroup (0.18 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapter.java

        }
    
        private static @Nullable ProblemGroup toProblemGroup(List<String> groupNames) {
            if (groupNames.isEmpty()) {
                return null;
            } else {
                String groupName = groupNames.remove(groupNames.size() - 1);
                return new DefaultProblemGroup(groupName, groupName, toProblemGroup(groupNames));
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 67.5K bytes
    - Viewed (0)
Back to top