mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-03 07:20:55 +07:00
9 lines
180 B
Plaintext
9 lines
180 B
Plaintext
import java.util.*;
|
|
|
|
public class UnusedReassignmentInLoop {
|
|
|
|
static String test(Deque<String> deque) {
|
|
// comment
|
|
return deque.isEmpty() ? null : deque.peek();
|
|
}
|
|
} |