Skip to content

Commit

Permalink
Use fake filesystems to make Guava tests work better [under Windows](g…
Browse files Browse the repository at this point in the history
…oogle/guava#2130) and Android, and prepare jimfs for some preliminary Android testing.

RELNOTES=n/a
PiperOrigin-RevId: 594298059
  • Loading branch information
cpovirk authored and Jimfs Team committed Dec 29, 2023
1 parent 4a4334a commit b3f5540
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@ enum SystemFileTimeSource implements FileTimeSource {
INSTANCE;

@Override
/*
* We don't really support usage from Android, but all configurations we're testing under support
* java.time.
*/
@SuppressWarnings("AndroidJdkLibsChecker")
public FileTime now() {
return FileTime.from(Instant.now());
}
Expand Down

0 comments on commit b3f5540

Please sign in to comment.