aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-plugin-api
diff options
context:
space:
mode:
authorsimonbrandhof <simon.brandhof@gmail.com>2010-12-22 22:43:49 +0000
committersimonbrandhof <simon.brandhof@gmail.com>2010-12-22 22:43:49 +0000
commit2366419df66b6a46e9be173ee71debff338f2f03 (patch)
treeb956022c5fbaa28b174452ec82935757ed39893d /sonar-plugin-api
parente8fdc7a09f6356dbcec4a8fd1ab157b0e2097c39 (diff)
downloadsonarqube-2366419df66b6a46e9be173ee71debff338f2f03.tar.gz
sonarqube-2366419df66b6a46e9be173ee71debff338f2f03.zip
fix memory leak in ruby database migration
Diffstat (limited to 'sonar-plugin-api')
-rw-r--r--sonar-plugin-api/src/main/java/org/sonar/api/platform/ServerUpgradeStatus.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/sonar-plugin-api/src/main/java/org/sonar/api/platform/ServerUpgradeStatus.java b/sonar-plugin-api/src/main/java/org/sonar/api/platform/ServerUpgradeStatus.java
index 68f5c2bab6d..dad047afa70 100644
--- a/sonar-plugin-api/src/main/java/org/sonar/api/platform/ServerUpgradeStatus.java
+++ b/sonar-plugin-api/src/main/java/org/sonar/api/platform/ServerUpgradeStatus.java
@@ -32,9 +32,9 @@ public interface ServerUpgradeStatus extends ServerComponent {
boolean isUpgraded();
/**
- * Has the database been created during the current startup ?
+ * Has the database been created from scratch during the current startup ?
*/
- boolean isInstalledFromScratch();
+ boolean isFreshInstall();
/**
* The database version before the server startup. Returns <=0 if db created from scratch.