Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/DescriptiveChange.java

    package org.gradle.internal.execution.history.changes;
    
    import com.google.errorprone.annotations.FormatMethod;
    
    import java.util.Objects;
    
    public class DescriptiveChange implements Change {
        private final String message;
    
        @FormatMethod
        public DescriptiveChange(String message, Object... params) {
            this.message = String.format(message, params);
        }
    
        @Override
        public String getMessage() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:32 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top