File tree 1 file changed +2
-2
lines changed
src/test/java/com/google/devtools/build/lib/util
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -249,7 +249,7 @@ public void writeSet() throws Exception {
249
249
250
250
Path outfile = scratch .resolve (filename );
251
251
Path dotd = scratch .resolve ("/usr/local/blah/blah/genhello/hello.d" );
252
- FileSystemUtils . createDirectoryAndParents ( dotd .getParentDirectory ());
252
+ dotd .getParentDirectory (). createDirectoryAndParents ( );
253
253
depSet1 .write (outfile , ".d" );
254
254
255
255
String dotdContents = new String (FileSystemUtils .readContentAsLatin1 (dotd ));
@@ -273,7 +273,7 @@ public void writeReadSet() throws Exception {
273
273
depSet1 .setOutputFileName (filename );
274
274
275
275
Path dotd = scratch .resolve (filename );
276
- FileSystemUtils . createDirectoryAndParents ( dotd .getParentDirectory ());
276
+ dotd .getParentDirectory (). createDirectoryAndParents ( );
277
277
depSet1 .write (dotd , ".d" );
278
278
279
279
DependencySet depSet2 = newDependencySet ().read (dotd );
You can’t perform that action at this time.
0 commit comments