Browse Source

1.2 call replaced with equivalent 1.1 call.

tags/V1_1_0_RC2
wisberg 21 years ago
parent
commit
79a151bdfd
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      runtime/src/org/aspectj/runtime/internal/CFlowStack.java

+ 1
- 1
runtime/src/org/aspectj/runtime/internal/CFlowStack.java View File

@@ -99,7 +99,7 @@ public class CFlowStack {
public CFlow peekTopCFlow() {
Stack stack = getThreadStack();
if (stack.isEmpty()) return null;
return (CFlow)stack.get(0);
return (CFlow)stack.elementAt(0);
}

public boolean isValid() {

Loading…
Cancel
Save