Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for getProblems (0.27 sec)

  1. maven-core/src/main/java/org/apache/maven/exception/DefaultExceptionHandler.java

        }
    
        private ExceptionSummary handle(ProjectBuildingResult result) {
            List<ExceptionSummary> children = new ArrayList<>();
    
            for (ModelProblem problem : result.getProblems()) {
                ExceptionSummary child = handle(problem, result.getProjectId());
                if (child != null) {
                    children.add(child);
                }
            }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Jul 19 15:37:28 GMT 2023
    - 10.4K bytes
    - Viewed (0)
Back to top