aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/javassist
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/javassist')
-rw-r--r--src/main/javassist/bytecode/LineNumberAttributeBuilder.java14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/main/javassist/bytecode/LineNumberAttributeBuilder.java b/src/main/javassist/bytecode/LineNumberAttributeBuilder.java
index 52d9d0c8..25182e2d 100644
--- a/src/main/javassist/bytecode/LineNumberAttributeBuilder.java
+++ b/src/main/javassist/bytecode/LineNumberAttributeBuilder.java
@@ -11,15 +11,15 @@ import java.util.Map;
public class LineNumberAttributeBuilder {
private final HashMap<Integer, Integer> map = new HashMap<>();
- public void put(int newPc, ASTree tree) {
+ public void put(int pc, ASTree tree) {
if (tree != null)
- put(newPc, tree.getLineNumber());
+ put(pc, tree.getLineNumber());
}
- private void put(int newPc, int lineNum) {
- Integer pc = map.get(lineNum);
- if (pc == null || newPc < pc) {
- map.put(lineNum, newPc);
+ private void put(int pc, int lineNum) {
+ Integer oldLineNum = map.get(pc);
+ if (oldLineNum == null || lineNum > oldLineNum) {
+ map.put(pc, lineNum);
}
}
@@ -29,8 +29,8 @@ public class LineNumberAttributeBuilder {
DataOutputStream dos = new DataOutputStream(bos)) {
dos.writeShort(size);
for (Map.Entry<Integer, Integer> entry : map.entrySet()) {
- dos.writeShort(entry.getValue());
dos.writeShort(entry.getKey());
+ dos.writeShort(entry.getValue());
}
return new LineNumberAttribute(cp, bos.toByteArray());
} catch (IOException e) {