And since the annotation was switched to avoid name collision, the full name is no longer needed

Former-commit-id: ddbe16d074ca2fed635c2e9f4ca8157af0fe9c24
This commit is contained in:
Hans Joachim Desserud
2015-01-11 11:09:02 +01:00
parent 6609481cc1
commit 63c7a9d926

View File

@@ -17,6 +17,7 @@
*/
package org.owasp.dependencycheck.data.lucene;
import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
import org.apache.lucene.util.Version;
/**
@@ -46,7 +47,7 @@ public final class LuceneUtils {
* @param text the data to be escaped
*/
@SuppressWarnings("fallthrough")
@edu.umd.cs.findbugs.annotations.SuppressFBWarnings(
@SuppressFBWarnings(
value = "SF_SWITCH_NO_DEFAULT",
justification = "The switch below does have a default.")
public static void appendEscapedLuceneQuery(StringBuilder buf,