Skip to content

Commit

Permalink
Remove temporary PlatformTestStorage#get*FileUri2 methods.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 623861408
  • Loading branch information
brettchabot authored and copybara-androidxtest committed Apr 11, 2024
1 parent 97afde2 commit 0daf52e
Showing 1 changed file with 0 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -131,14 +131,6 @@ public interface PlatformTestStorage {
*/
Uri getInputFileUri(@NonNull String pathname);

/**
* @deprecated use getInputFileUri instead
*/
@Deprecated
default Uri getInputFileUri2(@NonNull String pathname) {
return getInputFileUri(pathname);
}

/**
* Provides a Uri to a test output file.
*
Expand All @@ -156,14 +148,6 @@ default Uri getInputFileUri2(@NonNull String pathname) {
*/
Uri getOutputFileUri(@NonNull String pathname);

/**
* @deprecated use getOutputFileUri instead
*/
@Deprecated
default Uri getOutputFileUri2(@NonNull String pathname) {
return getOutputFileUri(pathname);
}

/**
* Returns true if {@code pathname} corresponds to a file or directory that is in a directory
* where the storage stores files.
Expand Down

0 comments on commit 0daf52e

Please sign in to comment.