Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for AbstractIsolatableScalarValue (0.19 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/AbstractIsolatableScalarValue.java

     *
     * @param <T> the type of the value
     */
    abstract class AbstractIsolatableScalarValue<T> extends AbstractScalarValueSnapshot<T> implements Isolatable<T> {
        public AbstractIsolatableScalarValue(T value) {
            super(value);
        }
    
        @Override
        public ValueSnapshot asSnapshot() {
            return this;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:36 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top