Ignore:
Timestamp:
2008-10-10T15:06:43+13:00 (16 years ago)
Author:
oranfry
Message:

fixes to the last change and made the selectinput render more nicely

File:
1 edited

Legend:

Unmodified
Added
Removed
  • release-kits/shared/ant-installer/src/org/tp23/antinstaller/input/SelectInput.java

    r17516 r17517  
    7171        public String getText() {
    7272            if( org.tp23.antinstaller.Installer.langPack != null ) {
    73                 String r = org.tp23.antinstaller.Installer.langPack.getString( getProperty() + "." + idx + ".displayText" );
    74                 if ( r != null ) return r;
     73                try {
     74                    String r = org.tp23.antinstaller.Installer.langPack.getString( getProperty() + "." + idx + ".displayText" );
     75                    return r;
     76                } catch ( java.util.MissingResourceException mre ) {}
    7577            }
    7678            return text;
Note: See TracChangeset for help on using the changeset viewer.