Files
Tagir Valeev 96c423456a IDEA-242445 Inline variable refacting remove comment
GitOrigin-RevId: 2f95f3fd529acb19d13dfdfa35143d03502c7747
2020-06-03 14:07:13 +03:00

9 lines
180 B
Plaintext

import java.util.*;
public class UnusedReassignmentInLoop {
static String test(Deque<String> deque) {
// comment
return deque.isEmpty() ? null : deque.peek();
}
}