Revision 32024

View differences:

trunk/libraries/libCorePlugin/src/com/iver/core/preferences/general/ExtensionPage.java
283 283
			jLabel1 = new JLabel();
284 284
			jLabel1.setText(PluginServices.getText(this, "Los_cambios_efectuados_sobre_estos_valores_se_aplicaran_al_reiniciar_la_aplicacion"));
285 285
			jPanel2 = new JPanel();
286
			jPanel2.add(jLabel1, null);			
286
			jPanel2.add(jLabel1, null);
287 287
		}
288 288
		return jPanel2;
289 289
	}
......
309 309
     * @return the formated message.
310 310
     */
311 311
    private static String format(String message, int lineLength){
312
        if (message.length() <= lineLength) return message;
312
    	if (message==null)
313
         	return "";
314
    	if (message.length() <= lineLength) return message;
313 315
        String[] lines = message.split(" ");
314 316
        String theMessage = "";
315 317
        String line="";

Also available in: Unified diff