git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@270911 13f79535-47bb-0310-9956-ffa450edef68master
| @@ -91,7 +91,7 @@ public abstract class MSVSS extends Task { | |||||
| * @param dir the directory containing ss.exe | * @param dir the directory containing ss.exe | ||||
| */ | */ | ||||
| public final void setSsdir(String dir) { | public final void setSsdir(String dir) { | ||||
| m_SSDir = project.translatePath(dir); | |||||
| m_SSDir = Project.translatePath(dir); | |||||
| } | } | ||||
| /** | /** | ||||
| @@ -139,7 +139,7 @@ public class MSVSSCHECKIN extends MSVSS { | |||||
| File dir = project.resolveFile(m_LocalPath); | File dir = project.resolveFile(m_LocalPath); | ||||
| if (!dir.exists()) { | if (!dir.exists()) { | ||||
| boolean done = dir.mkdirs(); | boolean done = dir.mkdirs(); | ||||
| if (done == false) { | |||||
| if (!done) { | |||||
| String msg = "Directory " + m_LocalPath + " creation was not " + | String msg = "Directory " + m_LocalPath + " creation was not " + | ||||
| "succesful for an unknown reason"; | "succesful for an unknown reason"; | ||||
| throw new BuildException(msg, location); | throw new BuildException(msg, location); | ||||
| @@ -138,7 +138,7 @@ public class MSVSSCHECKOUT extends MSVSS { | |||||
| File dir = project.resolveFile(m_LocalPath); | File dir = project.resolveFile(m_LocalPath); | ||||
| if (!dir.exists()) { | if (!dir.exists()) { | ||||
| boolean done = dir.mkdirs(); | boolean done = dir.mkdirs(); | ||||
| if (done == false) { | |||||
| if (!done) { | |||||
| String msg = "Directory " + m_LocalPath + " creation was not " + | String msg = "Directory " + m_LocalPath + " creation was not " + | ||||
| "succesful for an unknown reason"; | "succesful for an unknown reason"; | ||||
| throw new BuildException(msg, location); | throw new BuildException(msg, location); | ||||
| @@ -206,7 +206,7 @@ public class MSVSSGET extends MSVSS { | |||||
| File dir = project.resolveFile(m_LocalPath); | File dir = project.resolveFile(m_LocalPath); | ||||
| if (!dir.exists()) { | if (!dir.exists()) { | ||||
| boolean done = dir.mkdirs(); | boolean done = dir.mkdirs(); | ||||
| if (done == false) { | |||||
| if (!done) { | |||||
| String msg = "Directory " + m_LocalPath + " creation was not " + | String msg = "Directory " + m_LocalPath + " creation was not " + | ||||
| "successful for an unknown reason"; | "successful for an unknown reason"; | ||||
| throw new BuildException(msg, location); | throw new BuildException(msg, location); | ||||