Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for doGetParent (0.08 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/ModelPath.java

            // (and this can happen if a task name contains dots)
            this.path = path;
            this.components = components;
            this.parent = doGetParent();
        }
    
        @Override
        public int compareTo(ModelPath other) {
            if (this == other) {
                return 0;
            }
            return path.compareTo(other.path);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.2K bytes
    - Viewed (0)
Back to top