Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for tryGetLocation (0.12 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/problems/DefaultProblemLocationAnalyzer.java

            for (int i = startPos; i < endPos; i++) {
                Location location = tryGetLocation(stack.get(i));
                if (location != null) {
                    return location;
                }
            }
            return null;
        }
    
        @Nullable
        private Location tryGetLocation(StackTraceElement frame) {
            int lineNumber = frame.getLineNumber();
            if (lineNumber < 0) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 17:15:42 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top