We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 050ef40 commit 2538ba8Copy full SHA for 2538ba8
java/ql/src/Language Abuse/EmptyMethod.ql
@@ -90,4 +90,4 @@ where
90
not exists(m.getAnAnnotation()) and
91
//native methods have no body
92
not m.isNative()
93
-select m, "This empty method should be completed."
+select m, "Empty method found."
java/ql/test/query-tests/EmptyMethod/EmptyMethod.expected
@@ -1,2 +1,2 @@
1
-| Test.java:16:15:16:16 | f2 | This empty method should be completed. |
2
-| Test.java:43:18:43:23 | method | This empty method should be completed. |
+| Test.java:16:15:16:16 | f2 | Empty method found. |
+| Test.java:43:18:43:23 | method | Empty method found. |
0 commit comments