forked from apache/netbeans
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request apache#5843 from mbien/bump-annotation-processor-v…
…ersion AnnotationProcessors shouldn't set the SourceVersion unless required
- Loading branch information
Showing
1 changed file
with
0 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,8 +22,6 @@ | |
import javax.annotation.processing.Processor; | ||
import javax.annotation.processing.RoundEnvironment; | ||
import javax.annotation.processing.SupportedAnnotationTypes; | ||
import javax.annotation.processing.SupportedSourceVersion; | ||
import javax.lang.model.SourceVersion; | ||
import javax.lang.model.element.Element; | ||
import javax.lang.model.element.TypeElement; | ||
import org.netbeans.modules.languages.neon.completion.CompletionProviders; | ||
|
@@ -37,7 +35,6 @@ | |
* @author Ondrej Brejla <[email protected]> | ||
*/ | ||
@ServiceProvider(service = Processor.class) | ||
@SupportedSourceVersion(SourceVersion.RELEASE_7) | ||
@SupportedAnnotationTypes("org.netbeans.modules.languages.neon.spi.completion.MethodCompletionProvider.Registration") | ||
public class MethodCompletionProviderProcessor extends LayerGeneratingProcessor { | ||
|
||
|