Skip to content

Commit

Permalink
Remove fix for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
franz1981 committed Oct 23, 2023
1 parent 63545d8 commit 397e727
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -93,10 +93,6 @@ private static void loadProtoFiles(FakeFileSystem inMemoryFileSystem, ClassLoade
for (String proto : protos) {
//Loads the proto file resource files.
final InputStream inputStream = classLoader.getResourceAsStream(protoPath + proto);
// TODO tmp fix to run tests
if (inputStream == null) {
continue;
}
final String fileContents = CharStreams.toString(new InputStreamReader(inputStream, Charsets.UTF_8));
final okio.Path path = okio.Path.get("/" + protoPath + "/" + proto);
FileHandle fileHandle = inMemoryFileSystem.openReadWrite(path);
Expand Down

0 comments on commit 397e727

Please sign in to comment.