1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

[244435] Got rid of @Override annotations which were valid only when compiling using java 1.6.

This commit is contained in:
Pawel Piech 2008-08-20 18:14:03 +00:00
parent 69293447e9
commit 7c38e68d1d

View file

@ -37,12 +37,10 @@ import java.util.regex.Pattern;
public class PDAVirtualMachine {
static class Stack extends LinkedList<Object> {
@Override
public Object pop() {
return isEmpty() ? 0 : remove(size() - 1);
}
@Override
public void push(Object value) {
add(value);
}