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:
parent
69293447e9
commit
7c38e68d1d
1 changed files with 0 additions and 2 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue