Skip to content

Commit

Permalink
[fix] Remove named annotation value from test case #49
Browse files Browse the repository at this point in the history
Temporary fix for a bug in Spoon
  • Loading branch information
slarse committed Mar 4, 2020
1 parent 8699dd7 commit 609004c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public boolean isEmpty() {
* Checked fetching of the top element, throws an EmptyStackException if
* the stack is empty.
*/
@SuppressWarnings(value="unchecked")
@SuppressWarnings("unchecked")
private T checkedTop() {
if (size == 0) {
throw new EmptyStackException();
Expand Down

0 comments on commit 609004c

Please sign in to comment.