]> source.dussan.org Git - aspectj.git/commitdiff
1.2 call replaced with equivalent 1.1 call.
authorwisberg <wisberg>
Wed, 23 Apr 2003 09:18:47 +0000 (09:18 +0000)
committerwisberg <wisberg>
Wed, 23 Apr 2003 09:18:47 +0000 (09:18 +0000)
runtime/src/org/aspectj/runtime/internal/CFlowStack.java

index 067860ce7282a50a3a0add0cd2f99c92802e1ade..7c8eb06e57e353751a04e8eb38363f260db36445 100644 (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() {