You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2008/04/08 18:04:01 UTC

svn commit: r645983 - /commons/proper/net/trunk/src/java/org/apache/commons/net/ftp/parser/FTPTimestampParserImpl.java

Author: sebb
Date: Tue Apr  8 09:03:57 2008
New Revision: 645983

URL: http://svn.apache.org/viewvc?rev=645983&view=rev
Log:
Extraneous ;

Modified:
    commons/proper/net/trunk/src/java/org/apache/commons/net/ftp/parser/FTPTimestampParserImpl.java

Modified: commons/proper/net/trunk/src/java/org/apache/commons/net/ftp/parser/FTPTimestampParserImpl.java
URL: http://svn.apache.org/viewvc/commons/proper/net/trunk/src/java/org/apache/commons/net/ftp/parser/FTPTimestampParserImpl.java?rev=645983&r1=645982&r2=645983&view=diff
==============================================================================
--- commons/proper/net/trunk/src/java/org/apache/commons/net/ftp/parser/FTPTimestampParserImpl.java (original)
+++ commons/proper/net/trunk/src/java/org/apache/commons/net/ftp/parser/FTPTimestampParserImpl.java Tue Apr  8 09:03:57 2008
@@ -93,7 +93,7 @@
 	public Calendar parseTimestamp(String timestampStr, Calendar serverTime) throws ParseException {
 	    Calendar now = (Calendar) serverTime.clone();// Copy this, because we may change it
 		now.setTimeZone(this.getServerTimeZone());
-		Calendar working = (Calendar) now.clone();;
+		Calendar working = (Calendar) now.clone();
 		working.setTimeZone(getServerTimeZone());
 		ParsePosition pp = new ParsePosition(0);