aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-plugin-api
diff options
context:
space:
mode:
authorGodin <mandrikov@gmail.com>2010-10-25 15:39:19 +0000
committerGodin <mandrikov@gmail.com>2010-10-25 15:39:19 +0000
commit96ae4fe2cdbfa78590628aec67dee5de65f7c38f (patch)
tree05546ebbb2c9c19ce249df06967de0a772f3f5bb /sonar-plugin-api
parentd5bb7540815c5858b1cfc319dbcea6def500fad5 (diff)
downloadsonarqube-96ae4fe2cdbfa78590628aec67dee5de65f7c38f.tar.gz
sonarqube-96ae4fe2cdbfa78590628aec67dee5de65f7c38f.zip
SONAR-1772: Remove deprecated property "sonar.findbugs.maxHeap"
Diffstat (limited to 'sonar-plugin-api')
-rw-r--r--sonar-plugin-api/src/main/java/org/sonar/api/CoreProperties.java17
1 files changed, 2 insertions, 15 deletions
diff --git a/sonar-plugin-api/src/main/java/org/sonar/api/CoreProperties.java b/sonar-plugin-api/src/main/java/org/sonar/api/CoreProperties.java
index a00f2a78db2..fba4ece78d0 100644
--- a/sonar-plugin-api/src/main/java/org/sonar/api/CoreProperties.java
+++ b/sonar-plugin-api/src/main/java/org/sonar/api/CoreProperties.java
@@ -22,7 +22,7 @@ package org.sonar.api;
/**
* CoreProperties is used to group various properties of Sonar as well
* as default values of configuration in a single place
- *
+ *
* @since 1.11
*/
public interface CoreProperties {
@@ -41,7 +41,6 @@ public interface CoreProperties {
String PROJECT_EXCLUSIONS_PROPERTY = "sonar.exclusions";
String REUSE_RULES_CONFIGURATION_PROPERTY = "sonar.reuseExistingRulesConfiguration";
-
/* Checkstyle */
String CHECKSTYLE_PLUGIN = "checkstyle";
@@ -72,7 +71,7 @@ public interface CoreProperties {
String CORE_AUTHENTICATOR_CREATE_USERS = "sonar.authenticator.createUsers";
String SERVER_VERSION = "sonar.core.version";
String SERVER_ID = "sonar.core.id";
- String SERVER_STARTTIME = "sonar.core.startTime"; // format is yyyy-MM-dd'T'HH:mm:ssZ
+ String SERVER_STARTTIME = "sonar.core.startTime"; // format is yyyy-MM-dd'T'HH:mm:ssZ
String SKIP_TENDENCIES_PROPERTY = "sonar.skipTendencies";
boolean SKIP_TENDENCIES_DEFAULT_VALUE = false;
@@ -95,18 +94,6 @@ public interface CoreProperties {
String FINDBUGS_EFFORT_PROPERTY = "sonar.findbugs.effort";
String FINDBUGS_EFFORT_DEFAULT_VALUE = "Default";
String FINDBUGS_REPORT_PATH = "sonar.findbugs.reportPath";
-
- /**
- * @deprecated since 2.4, because unused
- */
- @Deprecated
- String FINDBUGS_MAXHEAP_PROPERTY = "sonar.findbugs.maxHeap";
-
- /**
- * @deprecated since 2.4, because unused
- */
- int FINDBUGS_MAXHEAP_DEFAULT_VALUE = 512;
-
String FINDBUGS_TIMEOUT_PROPERTY = "sonar.findbugs.timeout";
long FINDBUGS_TIMEOUT_DEFAULT_VALUE = 600000;