mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-12 18:59:06 +01:00
Changed the root package from net.sf.briar to org.briarproject.
This commit is contained in:
13
briar-tests/src/org/briarproject/TestFileUtils.java
Normal file
13
briar-tests/src/org/briarproject/TestFileUtils.java
Normal file
@@ -0,0 +1,13 @@
|
||||
package org.briarproject;
|
||||
|
||||
import java.io.File;
|
||||
import java.io.IOException;
|
||||
|
||||
import org.briarproject.api.system.FileUtils;
|
||||
|
||||
public class TestFileUtils implements FileUtils {
|
||||
|
||||
public long getFreeSpace(File f) throws IOException {
|
||||
return f.getFreeSpace();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user