Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for FileDeletionResult (0.18 sec)

  1. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/impl/DefaultDeleter.java

                return new FileDeletionResult(isSuccessful, null);
            }
    
            static FileDeletionResult withException(Exception exception) {
                return new FileDeletionResult(false, exception);
            }
    
            private final boolean isSuccessful;
            @Nullable
            private final Exception exception;
    
            private FileDeletionResult(boolean isSuccessful, @Nullable Exception exception) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 15 17:10:06 UTC 2024
    - 12.9K bytes
    - Viewed (0)
Back to top