Author: solomax
Date: Thu Aug 21 08:38:10 2014
New Revision: 1619312

URL: http://svn.apache.org/r1619312
Log:
Compiler warning is fixed

Modified:
    
openmeetings/branches/3.0.x/src/web/java/org/apache/openmeetings/web/pages/install/InstallWizard.java

Modified: 
openmeetings/branches/3.0.x/src/web/java/org/apache/openmeetings/web/pages/install/InstallWizard.java
URL: 
http://svn.apache.org/viewvc/openmeetings/branches/3.0.x/src/web/java/org/apache/openmeetings/web/pages/install/InstallWizard.java?rev=1619312&r1=1619311&r2=1619312&view=diff
==============================================================================
--- 
openmeetings/branches/3.0.x/src/web/java/org/apache/openmeetings/web/pages/install/InstallWizard.java
 (original)
+++ 
openmeetings/branches/3.0.x/src/web/java/org/apache/openmeetings/web/pages/install/InstallWizard.java
 Thu Aug 21 08:38:10 2014
@@ -83,7 +83,7 @@ public class InstallWizard extends Wizar
        private Throwable th = null;
        
        public void initTzDropDown() {
-               paramsStep1.tzDropDown.init();
+               paramsStep1.tzDropDown.setOption();
        }
        
        //onInit, applyState
@@ -424,7 +424,7 @@ public class InstallWizard extends Wizar
        private final class TzDropDown extends WizardDropDown<String> {
                private static final long serialVersionUID = 1L;
 
-               public void init() {
+               public void setOption() {
                        List<String> tzList = AVAILABLE_TIMEZONES;
                        String tzId = WebSession.get().getClientTZCode();
                        option = AVAILABLE_TIMEZONE_SET.contains(tzId) ? tzId : 
tzList.get(0);


Reply via email to