mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-02 14:38:30 +07:00
GitOrigin-RevId: 2f95f3fd529acb19d13dfdfa35143d03502c7747
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();
|
|
}
|
|
} |