diff options
author | Julien HENRY <julien.henry@sonarsource.com> | 2018-10-11 17:25:13 +0200 |
---|---|---|
committer | SonarTech <sonartech@sonarsource.com> | 2018-10-12 20:20:57 +0200 |
commit | e046e5ca38522a997ff9d605beeaf92a9971699e (patch) | |
tree | 7218b5e1166fbc8db19ae731cfbc568329775949 /sonar-plugin-api/src | |
parent | 1486db5c84ac7e350b6c962b5efb5a72d1406aa5 (diff) | |
download | sonarqube-e046e5ca38522a997ff9d605beeaf92a9971699e.tar.gz sonarqube-e046e5ca38522a997ff9d605beeaf92a9971699e.zip |
SONAR-11219 Remove @ScannerSide annotation from ProfileExporter
Diffstat (limited to 'sonar-plugin-api/src')
-rw-r--r-- | sonar-plugin-api/src/main/java/org/sonar/api/profiles/ProfileExporter.java | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/sonar-plugin-api/src/main/java/org/sonar/api/profiles/ProfileExporter.java b/sonar-plugin-api/src/main/java/org/sonar/api/profiles/ProfileExporter.java index 703d03e1e81..48fdbc1848d 100644 --- a/sonar-plugin-api/src/main/java/org/sonar/api/profiles/ProfileExporter.java +++ b/sonar-plugin-api/src/main/java/org/sonar/api/profiles/ProfileExporter.java @@ -24,7 +24,6 @@ import org.apache.commons.lang.StringUtils; import org.apache.commons.lang.builder.ToStringBuilder; import org.apache.commons.lang.builder.ToStringStyle; import org.sonar.api.ExtensionPoint; -import org.sonar.api.batch.ScannerSide; import org.sonar.api.server.ServerSide; /** @@ -32,7 +31,6 @@ import org.sonar.api.server.ServerSide; * * @since 2.3 */ -@ScannerSide @ServerSide @ExtensionPoint public abstract class ProfileExporter { |