mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-22 01:11:42 +00:00
New 2018 and later build setup (#1001)
This commit is contained in:
committed by
Peter Johnson
parent
cb2c9eb6d5
commit
7f88cf768d
@@ -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() {
|
||||
|
||||
Reference in New Issue
Block a user