Index: src/org/netbeans/modules/autoupdate/L10NUpdate.java =================================================================== RCS file: /cvs/autoupdate/src/org/netbeans/modules/autoupdate/L10NUpdate.java,v retrieving revision 1.2 diff -u -r1.2 L10NUpdate.java --- src/org/netbeans/modules/autoupdate/L10NUpdate.java 28 Nov 2002 14:07:07 -0000 1.2 +++ src/org/netbeans/modules/autoupdate/L10NUpdate.java 22 Apr 2003 15:15:50 -0000 @@ -72,7 +72,13 @@ langcode = getAttribute( n, "langcode" ); // NOI18N brandingcode = getAttribute( n, "brandingcode" ); // NOI18N specversion = new SpecificationVersion ( getAttribute( n, "module_spec_version" ) ); // NOI18N - majorversion = Integer.parseInt( getAttribute( n, "module_major_version" ) ); // NOI18N + String mvAttr = getAttribute( n, "module_major_version" ); // NOI18N + if ( mvAttr != null ) { + majorversion = Integer.parseInt( mvAttr ); + } + else { + majorversion = -1; + } l10nname = getAttribute( n, "OpenIDE-Module-Name" ); // NOI18N l10ndesc = getAttribute( n, ATTR_LONG_DESC ); if ( getDescription() == null || getDescription().equals ("") ) // NOI18N