From 609004c8d48a7efb5d3275a5d5da83f2e1c19eb3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20Lars=C3=A9n?= Date: Wed, 4 Mar 2020 21:12:41 +0100 Subject: [PATCH] [fix] Remove named annotation value from test case #49 Temporary fix for a bug in Spoon --- .../resources/clean/left_modified/edit_annotations/Base.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/resources/clean/left_modified/edit_annotations/Base.java b/src/test/resources/clean/left_modified/edit_annotations/Base.java index 018b4e6e..ed79d662 100644 --- a/src/test/resources/clean/left_modified/edit_annotations/Base.java +++ b/src/test/resources/clean/left_modified/edit_annotations/Base.java @@ -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();