File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
jetty-core/jetty-util/src/main/java/org/eclipse/jetty/util Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -175,12 +175,10 @@ public static <T> List<T> asList(T[] a)
175
175
}
176
176
177
177
/**
178
- * <p>Returns a {@link ListIterator} positioned at the last item in a list</p>
179
- * <p>The method is safe for concurrent modifications iff the list iterator itself is safe.</p>
178
+ * <p>Returns a {@link ListIterator} positioned at the last item in a list.</p>
180
179
* @param list the list
181
180
* @param <T> the element type
182
- * @return A {@link ListIterator} with {@link ListIterator#hasNext()} that would have return {@code false}
183
- * at the snapshot of the list represented by this call.
181
+ * @return A {@link ListIterator} positioned at the last item of the list.
184
182
*/
185
183
public static <T > ListIterator <T > listIteratorAtEnd (List <T > list )
186
184
{
You can’t perform that action at this time.
0 commit comments