Fixed indentation.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1377487 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
8338b9a252
commit
25ebc31559
|
@ -49,12 +49,10 @@ import org.apache.commons.collections.set.UnmodifiableSet;
|
||||||
*/
|
*/
|
||||||
public class SetUniqueList<E> extends AbstractSerializableListDecorator<E> {
|
public class SetUniqueList<E> extends AbstractSerializableListDecorator<E> {
|
||||||
|
|
||||||
/** Serialization version */
|
/** Serialization version. */
|
||||||
private static final long serialVersionUID = 7196982186153478694L;
|
private static final long serialVersionUID = 7196982186153478694L;
|
||||||
|
|
||||||
/**
|
/** Internal Set to maintain uniqueness. */
|
||||||
* Internal Set to maintain uniqueness.
|
|
||||||
*/
|
|
||||||
protected final Set<E> set;
|
protected final Set<E> set;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -429,8 +427,7 @@ public class SetUniqueList<E> extends AbstractSerializableListDecorator<E> {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void set(E object) {
|
public void set(E object) {
|
||||||
throw new UnsupportedOperationException(
|
throw new UnsupportedOperationException("ListIterator does not support set");
|
||||||
"ListIterator does not support set");
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue