Whitespace-only code formatting changes.

This commit is contained in:
akwizgran
2015-11-30 09:38:25 +00:00
parent 1950c13ffb
commit 027ae8340f
202 changed files with 2993 additions and 2993 deletions

View File

@@ -10,7 +10,7 @@ public class TransportId {
private final String id;
public TransportId(String id) {
if(id.length() == 0 || id.length() > MAX_TRANSPORT_ID_LENGTH)
if (id.length() == 0 || id.length() > MAX_TRANSPORT_ID_LENGTH)
throw new IllegalArgumentException();
this.id = id;
}
@@ -21,7 +21,7 @@ public class TransportId {
@Override
public boolean equals(Object o) {
if(o instanceof TransportId) return id.equals(((TransportId) o).id);
if (o instanceof TransportId) return id.equals(((TransportId) o).id);
return false;
}