New 2018 and later build setup (#1001)

This commit is contained in:
Thad House
2018-04-29 13:29:07 -07:00
committed by Peter Johnson
parent cb2c9eb6d5
commit 7f88cf768d
317 changed files with 60521 additions and 54781 deletions

View File

@@ -8,9 +8,6 @@
package edu.wpi.first.wpiutil;
import java.io.File;
import java.io.IOException;
import java.io.BufferedReader;
import java.io.InputStreamReader;
public class RuntimeDetector {
private static String filePrefix;
@@ -80,7 +77,8 @@ public class RuntimeDetector {
public static synchronized String getLibraryResource(String libName) {
computePlatform();
return filePath + filePrefix + libName + fileExtension;
String toReturn = filePath + filePrefix + libName + fileExtension;
return toReturn;
}
public static boolean isAthena() {