Removed obsolete class with no references

This commit is contained in:
Dennis Aulenbacher
2020-12-04 17:20:16 +01:00
parent 1cec6af2cd
commit b40b0e2029
@@ -1,14 +0,0 @@
package com.sap.sailing.manage2sail;
import java.io.IOException;
import java.io.InputStream;
public class TestManage2SailEventResultsParser {
public static EventResultDescriptor getTestEventResult() throws IOException {
Manage2SailEventResultsParser parser = new Manage2SailEventResultsParserImpl();
InputStream is = TestManage2SailEventResultsParser.class.getClassLoader().getResourceAsStream("worldcupMallorca2013_Races.json");
return parser.getEventResult(is);
}
}