mirror of
https://github.com/openjdk/jdk.git
synced 2026-01-28 03:58:21 +00:00
Rename mapPos to endpos, there is no longer an end position map
This commit is contained in:
parent
3432b13996
commit
e217e5f3b3
@ -650,9 +650,9 @@ public class TreeInfo {
|
||||
if (tree == null)
|
||||
return Position.NOPOS;
|
||||
|
||||
int mapPos = tree.endpos;
|
||||
if (mapPos != Position.NOPOS)
|
||||
return mapPos;
|
||||
int endpos = tree.endpos;
|
||||
if (endpos != Position.NOPOS)
|
||||
return endpos;
|
||||
|
||||
switch(tree.getTag()) {
|
||||
case BITOR_ASG: case BITXOR_ASG: case BITAND_ASG:
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user