aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorGravatar Ulf Adams <ulfjack@google.com>2015-04-24 18:35:21 +0000
committerGravatar Han-Wen Nienhuys <hanwen@google.com>2015-04-27 18:48:33 +0000
commitcf38637bc956ed1f862b67471b96a05be24964bb (patch)
treeee19ffa27d23b45f9d2e14316c6c87c880b8d07c /src
parente2dd318ad3f9224def563b4e68bb515f05844311 (diff)
Remove more calls to scratchFS().
-- MOS_MIGRATED_REVID=91999865
Diffstat (limited to 'src')
-rw-r--r--src/test/java/com/google/devtools/build/lib/testutil/FoundationTestCase.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/java/com/google/devtools/build/lib/testutil/FoundationTestCase.java b/src/test/java/com/google/devtools/build/lib/testutil/FoundationTestCase.java
index 2355040d48..dad012bf7b 100644
--- a/src/test/java/com/google/devtools/build/lib/testutil/FoundationTestCase.java
+++ b/src/test/java/com/google/devtools/build/lib/testutil/FoundationTestCase.java
@@ -91,11 +91,11 @@ public abstract class FoundationTestCase extends TestCase {
reporter.addHandler(failFastHandler);
}
- /*
+ /**
* Creates the file system; override to inject FS behavior.
*/
protected FileSystem createFileSystem() {
- return new InMemoryFileSystem(BlazeClock.instance());
+ return new InMemoryFileSystem(BlazeClock.instance());
}
private void copySkylarkFilesIfExist() throws IOException {