Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for getDefaultLong (0.3 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/wizard/AdminWizardAction.java

                try {
                    return Integer.parseInt(value);
                } catch (final NumberFormatException e) {}
            }
            return defaultValue;
        }
    
        protected Long getDefaultLong(final String key, final Long defaultValue) {
            final String value = systemProperties.getProperty(key);
            if (value != null) {
                try {
                    return Long.parseLong(value);
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 12.7K bytes
    - Viewed (0)
Back to top