]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-1772: Remove deprecated property "sonar.findbugs.maxHeap"
authorGodin <mandrikov@gmail.com>
Mon, 25 Oct 2010 15:39:19 +0000 (15:39 +0000)
committerGodin <mandrikov@gmail.com>
Mon, 25 Oct 2010 15:39:19 +0000 (15:39 +0000)
plugins/sonar-findbugs-plugin/src/main/java/org/sonar/plugins/findbugs/FindbugsPlugin.java
sonar-plugin-api/src/main/java/org/sonar/api/CoreProperties.java

index e01255a4e2dd68834a6504e80669ac3c08aa5d71..01789858855902fdd14381f8b1b182404021ac48 100644 (file)
@@ -37,14 +37,6 @@ import org.sonar.api.Property;
         project = true,
         module = true,
         global = true),
-    @Property(
-        key = CoreProperties.FINDBUGS_MAXHEAP_PROPERTY,
-        defaultValue = CoreProperties.FINDBUGS_MAXHEAP_DEFAULT_VALUE + "",
-        name = "Max Heap",
-        description = "Maximum Java heap size in megabytes (default=512).",
-        project = true,
-        module = true,
-        global = true),
     @Property(
         key = CoreProperties.FINDBUGS_TIMEOUT_PROPERTY,
         defaultValue = CoreProperties.FINDBUGS_TIMEOUT_DEFAULT_VALUE + "",
index a00f2a78db2d29af13f561b7b269b8bf40470849..fba4ece78d08064528e3a48bd6809d84ff49293c 100644 (file)
@@ -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;