Skip to content

Commit

Permalink
small bug in ftpc: did cot compile in Java 1.5
Browse files Browse the repository at this point in the history
Please set compiler to Java 1.5-compliance

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@4570 6c8d7289-2bf4-0310-a012-ef5d649a1542
  • Loading branch information
orbiter committed Mar 16, 2008
1 parent 0a593a4 commit 7fd094f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion htroot/Threaddump_p.java
Expand Up @@ -56,7 +56,6 @@

import java.util.Map;
import java.lang.StringBuffer;
import java.util.Iterator;
import java.util.Date;

public class Threaddump_p {
Expand Down
2 changes: 1 addition & 1 deletion source/de/anomic/net/ftpc.java
Expand Up @@ -1616,7 +1616,7 @@ private void open(final String host, final int port) throws IOException {
} catch (final IOException e) {
// if a connection was opened, it should not be used
closeConnection();
throw new IOException(e);
throw new IOException(e.getMessage());
}
}

Expand Down

0 comments on commit 7fd094f

Please sign in to comment.