mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-08 10:16:03 +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 {
|
public class PDAVirtualMachine {
|
||||||
|
|
||||||
static class Stack extends LinkedList<Object> {
|
static class Stack extends LinkedList<Object> {
|
||||||
@Override
|
|
||||||
public Object pop() {
|
public Object pop() {
|
||||||
return isEmpty() ? 0 : remove(size() - 1);
|
return isEmpty() ? 0 : remove(size() - 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public void push(Object value) {
|
public void push(Object value) {
|
||||||
add(value);
|
add(value);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue