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:
parent
978df06f37
commit
bccae53f03
2 changed files with 5 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue