gshell-support/gshell-clp/src/main/java/org/apache/geronimo/gshell/clp/handler/Messages.java [37:47]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    String format(final Object... args) {
        assert args != null;
        
        synchronized (Messages.class) {
            if (bundle == null) {
                bundle = ResourceBundle.getBundle(Messages.class.getName());
            }

            return String.format(bundle.getString(name()), args);
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



gshell-support/gshell-clp/src/main/java/org/apache/geronimo/gshell/clp/setter/Messages.java [39:49]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    String format(final Object... args) {
        assert args != null;

        synchronized (Messages.class) {
            if (bundle == null) {
                bundle = ResourceBundle.getBundle(Messages.class.getName());
            }

            return String.format(bundle.getString(name()), args);
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



gshell-support/gshell-clp/src/main/java/org/apache/geronimo/gshell/clp/Messages.java [41:51]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    String format(final Object... args) {
        assert args != null;

        synchronized (Messages.class) {
            if (bundle == null) {
                bundle = ResourceBundle.getBundle(Messages.class.getName());
            }

            return String.format(bundle.getString(name()), args);
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



