Improve code / xml formatting, closes #54

This commit is contained in:
Emux
2016-07-09 19:45:22 +03:00
parent 7919d0ab9c
commit e793e8851b
458 changed files with 58405 additions and 63062 deletions

View File

@@ -2,9 +2,9 @@ package java.net;
public class MalformedURLException extends Exception {
/**
/**
*
*/
private static final long serialVersionUID = 1L;
private static final long serialVersionUID = 1L;
}

View File

@@ -1,22 +1,22 @@
package java.net;
public class URL {
@Override
public String toString() {
return mPath;
}
@Override
public String toString() {
return mPath;
}
String mProtocol;
String mHostname;
int mPort;
String mPath;
String mProtocol;
String mHostname;
int mPort;
String mPath;
public URL(String protocol, String hostName, int port, String path) {
//mPath = "http://" +hostName +"/" + path;
mPath = path;
}
public URL(String protocol, String hostName, int port, String path) {
//mPath = "http://" +hostName +"/" + path;
mPath = path;
}
public URL(String path) throws MalformedURLException {
mPath = path;
}
public URL(String path) throws MalformedURLException {
mPath = path;
}
}

View File

@@ -2,9 +2,9 @@ package java.util.concurrent;
public class CancellationException extends IllegalStateException {
/**
*
*/
/**
*
*/
private static final long serialVersionUID = 1L;
}

View File

@@ -4,9 +4,9 @@ import java.util.ArrayList;
public class CopyOnWriteArrayList<E> extends ArrayList<E> {
/**
/**
*
*/
private static final long serialVersionUID = 1L;
private static final long serialVersionUID = 1L;
}