Skip to content

Commit 0645fe8

Browse files
committed
NLS - Don't use Messages.class.getPackageName()
- There's a bug in Eclipse using this
1 parent baaa308 commit 0645fe8

File tree

2 files changed

+2
-2
lines changed
  • com.archimatetool.csv/src/com/archimatetool/csv
  • com.archimatetool.editor/src/com/archimatetool/editor/ui/textrender

2 files changed

+2
-2
lines changed

com.archimatetool.csv/src/com/archimatetool/csv/Messages.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
public class Messages extends NLS {
66

7-
private static final String BUNDLE_NAME = Messages.class.getPackageName() + ".messages"; //$NON-NLS-1$
7+
private static final String BUNDLE_NAME = "com.archimatetool.csv.messages"; //$NON-NLS-1$
88

99
public static String CSVConstants_15;
1010

com.archimatetool.editor/src/com/archimatetool/editor/ui/textrender/Messages.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
public class Messages extends NLS {
66

7-
private static final String BUNDLE_NAME = Messages.class.getPackageName() + ".messages"; //$NON-NLS-1$
7+
private static final String BUNDLE_NAME = "com.archimatetool.editor.ui.textrender.messages"; //$NON-NLS-1$
88

99
public static String RelationshipRenderer_0;
1010

0 commit comments

Comments
 (0)