Skip to content

Commit

Permalink
Missing toString.
Browse files Browse the repository at this point in the history
  • Loading branch information
jglick committed Aug 4, 2014
1 parent 4a98bea commit bc6254b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions core/src/main/java/hudson/util/CopyOnWriteList.java
Expand Up @@ -164,6 +164,10 @@ public boolean contains(Object item) {
return core.contains(item);
}

@Override public String toString() {
return core.toString();
}

/**
* {@link Converter} implementation for XStream.
*/
Expand Down

0 comments on commit bc6254b

Please sign in to comment.