Browse Source

ws

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@332099 13f79535-47bb-0310-9956-ffa450edef68
master
Matthew Jason Benson 19 years ago
parent
commit
05ea8611d2
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/main/org/apache/tools/ant/taskdefs/condition/Os.java

+ 2
- 2
src/main/org/apache/tools/ant/taskdefs/condition/Os.java View File

@@ -250,7 +250,7 @@ public class Os implements Condition {
boolean isWindows = OS_NAME.indexOf(FAMILY_WINDOWS) > -1;
boolean is9x = false;
boolean isNT = false;
if(isWindows) {
if (isWindows) {
//there are only four 9x platforms that we look for
is9x = (OS_NAME.indexOf("95") >= 0
|| OS_NAME.indexOf("98") >= 0
@@ -306,4 +306,4 @@ public class Os implements Condition {
}
return retValue;
}
}
}

Loading…
Cancel
Save