peterreilly 2004/12/01 08:21:35 Modified: src/main/org/apache/tools/ant/taskdefs/optional/vss MSVSSADD.java MSVSSGET.java Log: stylecheck Revision Changes Path 1.18 +3 -3 ant/src/main/org/apache/tools/ant/taskdefs/optional/vss/MSVSSADD.java Index: MSVSSADD.java =================================================================== RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/taskdefs/optional/vss/MSVSSADD.java,v retrieving revision 1.17 retrieving revision 1.18 diff -u -r1.17 -r1.18 --- MSVSSADD.java 9 Mar 2004 16:48:40 -0000 1.17 +++ MSVSSADD.java 1 Dec 2004 16:21:35 -0000 1.18 @@ -28,7 +28,7 @@ */ public class MSVSSADD extends MSVSS { - private String m_LocalPath = null; + private String localPath = null; /** * Builds a command line to execute ss. @@ -71,7 +71,7 @@ * @return The local path value. */ protected String getLocalpath() { - return m_LocalPath; + return localPath; } /** @@ -116,6 +116,6 @@ * @param localPath The path on disk. */ public void setLocalpath(Path localPath) { - m_LocalPath = localPath.toString(); + this.localPath = localPath.toString(); } } 1.32 +1 -1 ant/src/main/org/apache/tools/ant/taskdefs/optional/vss/MSVSSGET.java Index: MSVSSGET.java =================================================================== RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/taskdefs/optional/vss/MSVSSGET.java,v retrieving revision 1.31 retrieving revision 1.32 diff -u -r1.31 -r1.32 --- MSVSSGET.java 9 Mar 2004 16:48:40 -0000 1.31 +++ MSVSSGET.java 1 Dec 2004 16:21:35 -0000 1.32 @@ -163,7 +163,7 @@ * a file has been skipped, <code>failonerror</code> is set to false when using * the <code>skip</code> option. * - * @param files + * @param files The action to take. */ public void setWritableFiles(WritableFiles files) { super.setInternalWritableFiles(files);
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]