Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephan Herrmann2020-03-19 19:48:02 +0000
committerStephan Herrmann2020-03-19 20:39:11 +0000
commite56c823649b351a74f287ec1479c9004ef6ed11f (patch)
tree600620a275653d5ee9f18ab7ad9e2732ea274e8d /org.eclipse.jdt.apt.tests/src-annotations/org/eclipse/jdt/apt/tests/annotations/helloworld/HelloWorldWildcardAnnotationProcessorFactory.java
parent07329519f5ac8fd8379eab265d25b2c09a24fd96 (diff)
downloadeclipse.jdt.core-e56c823649b351a74f287ec1479c9004ef6ed11f.tar.gz
eclipse.jdt.core-e56c823649b351a74f287ec1479c9004ef6ed11f.tar.xz
eclipse.jdt.core-e56c823649b351a74f287ec1479c9004ef6ed11f.zip
Bug 560451 - Activate automatic removal on unnecessary whitespace inI20200319-1800
org.eclipse.jdt.core Change-Id: Ie27502ac7333e8940a5f0e78fbb749a2c210b5d4
Diffstat (limited to 'org.eclipse.jdt.apt.tests/src-annotations/org/eclipse/jdt/apt/tests/annotations/helloworld/HelloWorldWildcardAnnotationProcessorFactory.java')
-rw-r--r--org.eclipse.jdt.apt.tests/src-annotations/org/eclipse/jdt/apt/tests/annotations/helloworld/HelloWorldWildcardAnnotationProcessorFactory.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/org.eclipse.jdt.apt.tests/src-annotations/org/eclipse/jdt/apt/tests/annotations/helloworld/HelloWorldWildcardAnnotationProcessorFactory.java b/org.eclipse.jdt.apt.tests/src-annotations/org/eclipse/jdt/apt/tests/annotations/helloworld/HelloWorldWildcardAnnotationProcessorFactory.java
index 8709d24771..d5197553c5 100644
--- a/org.eclipse.jdt.apt.tests/src-annotations/org/eclipse/jdt/apt/tests/annotations/helloworld/HelloWorldWildcardAnnotationProcessorFactory.java
+++ b/org.eclipse.jdt.apt.tests/src-annotations/org/eclipse/jdt/apt/tests/annotations/helloworld/HelloWorldWildcardAnnotationProcessorFactory.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2005, 2007 BEA Systems, Inc.
+ * Copyright (c) 2005, 2007 BEA Systems, Inc.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
@@ -10,7 +10,7 @@
*
* Contributors:
* jgarms@bea.com - initial API and implementation
- *
+ *
*******************************************************************************/
package org.eclipse.jdt.apt.tests.annotations.helloworld;
@@ -18,17 +18,17 @@ import java.util.Collection;
import java.util.Collections;
/**
- * Processor factory that claims annotations with a wildcard
+ * Processor factory that claims annotations with a wildcard
* ("org.eclipse.jdt.apt.tests.annotations.helloworld.*")
*/
public class HelloWorldWildcardAnnotationProcessorFactory extends
HelloWorldAnnotationProcessorFactory {
-
+
public static volatile boolean CLAIM_ALL_ANNOTATIONS;
-
+
public Collection<String> supportedAnnotationTypes() {
-
+
// We need to swap behavior because always claiming "*" will cause
// other processors normally called after us to be prevented from running,
// as we have claimed everything

Back to the top