Skip to content

Commit

Permalink
Whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed May 4, 2024
1 parent 15a2bc0 commit 581e9ae
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/main/java/org/apache/commons/validator/Arg.java
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,6 @@ public class Arg implements Cloneable, Serializable {
public Object clone() {
try {
return super.clone();

} catch (final CloneNotSupportedException e) {
throw new UnsupportedOperationException(e.toString(), e);
}
Expand Down Expand Up @@ -172,7 +171,6 @@ public void setResource(final boolean resource) {
@Override
public String toString() {
final StringBuilder results = new StringBuilder();

results.append("Arg: name=");
results.append(name);
results.append(" key=");
Expand All @@ -184,7 +182,6 @@ public String toString() {
results.append(" resource=");
results.append(resource);
results.append("\n");

return results.toString();
}

Expand Down

0 comments on commit 581e9ae

Please sign in to comment.