1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

2005-06-25 Alain Magloire

Fix PR 98458: extra semicolon in namespace wizard class.
	* src/org/eclipse/cdt/internal/ui/wizards/classwizard/NewClassCodeGenerator.java
This commit is contained in:
Alain Magloire 2005-06-25 17:07:13 +00:00
parent 978df06f37
commit bccae53f03
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2005-06-25 Alain Magloire
Fix PR 98458: extra semicolon in namespace wizard class.
* src/org/eclipse/cdt/internal/ui/wizards/classwizard/NewClassCodeGenerator.java
2005-06-25 Alain Magloire
Fix for PR 98788: Templates
* src/org/eclipse/cdt/internal/ui/viewsupport/CElementImageProvider.java

View file

@ -326,7 +326,7 @@ public class NewClassCodeGenerator {
private void endNamespace(StringBuffer text) {
for (int i = 0; i < fNamespace.segmentCount(); ++i) {
text.append(fLineDelimiter);
text.append("};"); //$NON-NLS-1$
text.append("}"); //$NON-NLS-1$
text.append(fLineDelimiter);
}
}