We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99ca0c5 commit 5df3227Copy full SHA for 5df3227
core/src/main/java/org/renjin/primitives/files/Files.java
@@ -302,10 +302,6 @@ private static boolean isWindows() {
302
@Internal("Sys.which")
303
public static StringVector sysWhich(@Current Context context, StringVector names) {
304
305
- if(isWindows()) {
306
- throw new EvalException("Sys.which() not implemented for Windows");
307
- }
308
-
309
String[] path = Strings.nullToEmpty(System.getenv("PATH")).split(File.pathSeparator);
310
311
StringVector.Builder result = new StringArrayVector.Builder(0, names.length());
0 commit comments