From 88f16d892d54fd8c3e190cc1f6363638b11ae1a3 Mon Sep 17 00:00:00 2001
From: Jean-Noel Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Tue, 17 Feb 2015 10:26:23 +0000
Subject: [PATCH] AutoRefactor: remove fields default values
---
opendj-server-legacy/src/main/java/org/opends/quicksetup/webstart/WebStartDownloader.java | 22 +++++++---------------
1 files changed, 7 insertions(+), 15 deletions(-)
diff --git a/opendj-server-legacy/src/main/java/org/opends/quicksetup/webstart/WebStartDownloader.java b/opendj-server-legacy/src/main/java/org/opends/quicksetup/webstart/WebStartDownloader.java
index bc2a2c7..9cac1b9 100644
--- a/opendj-server-legacy/src/main/java/org/opends/quicksetup/webstart/WebStartDownloader.java
+++ b/opendj-server-legacy/src/main/java/org/opends/quicksetup/webstart/WebStartDownloader.java
@@ -22,7 +22,7 @@
*
*
* Copyright 2006-2009 Sun Microsystems, Inc.
- * Portions Copyright 2013-2014 ForgeRock AS.
+ * Portions Copyright 2013-2015 ForgeRock AS.
*/
package org.opends.quicksetup.webstart;
@@ -62,22 +62,14 @@
private static final LocalizedLogger logger = LocalizedLogger.getLoggerForThisClass();
private ApplicationException ex;
-
private boolean isFinished;
-
- private int downloadPercentage = 0;
-
- private int currentPercMin = 0;
-
- private int currentPercMax = 0;
-
- private int currentValidatingPercent = 0;
-
- private int currentUpgradingPercent = 0;
-
+ private int downloadPercentage;
+ private int currentPercMin;
+ private int currentPercMax;
+ private int currentValidatingPercent;
+ private int currentUpgradingPercent;
private Status status = Status.DOWNLOADING;
-
- private LocalizableMessage summary = null;
+ private LocalizableMessage summary;
/**
* This enumeration contains the different Status on which
--
Gitblit v1.10.0