mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-02 14:38:30 +07:00
Fixes IDEA-286285 Incorrect redundant line when dealing with linked list traversal GitOrigin-RevId: 3658233e9f82e4129bcf35d14eafc1007d946fc7
11 lines
140 B
Java
11 lines
140 B
Java
// IDEA-286285
|
|
class Node {
|
|
Node next;
|
|
|
|
public void test(Node n1, Node n2) {
|
|
n1.next = n2;
|
|
n1 = next;
|
|
n1.next = null;
|
|
}
|
|
}
|