Skip to content

Commit 7ba95a2

Browse files
committed
housekeeping
1 parent bddefc7 commit 7ba95a2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/fortran/ofp/XMLPrinterBase.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,10 +94,10 @@ public XMLPrinterBase(String[] args, IFortranParser parser, String filename) {
9494
* @param name
9595
*/
9696
protected Element contextOpen(String name) {
97-
Element new_context = doc.createElement(name);
97+
Element newContext = doc.createElement(name);
9898
if (context != null)
99-
context.appendChild(new_context);
100-
context = new_context;
99+
context.appendChild(newContext);
100+
context = newContext;
101101
return context;
102102
}
103103

0 commit comments

Comments
 (0)