Skip to content

Commit d1413f6

Browse files
committed
not needed with upcoming OFP version
1 parent 7161581 commit d1413f6

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

src/fortran/ofp/XMLPrinter.java

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -676,8 +676,6 @@ public void implicit_stmt(Token label, Token implicitKeyword, Token noneKeyword,
676676
contextOpen("declaration");
677677
if (verbosity >= 20)
678678
super.implicit_stmt(label, implicitKeyword, noneKeyword, eos, hasImplicitSpecList);
679-
if (verbosity >= 100)
680-
updateBounds(label, implicitKeyword, noneKeyword, eos);
681679
setAttribute("type", "implicit");
682680
setAttribute("subtype", noneKeyword == null ? "some" : "none");
683681
contextClose("declaration");
@@ -1981,8 +1979,6 @@ public void program_stmt(Token label, Token programKeyword, Token id, Token eos)
19811979
contextClose("header");
19821980
if (verbosity >= 20)
19831981
super.program_stmt(label, programKeyword, id, eos);
1984-
if (verbosity >= 100)
1985-
updateBounds(label, programKeyword, id, eos);
19861982
setAttribute("name", id);
19871983
contextOpen("body");
19881984
contextOpen("specification");
@@ -1998,8 +1994,6 @@ public void end_program_stmt(Token label, Token endKeyword, Token programKeyword
19981994
}
19991995
contextCloseAllInner("program");
20001996
super.end_program_stmt(label, endKeyword, programKeyword, id, eos);
2001-
if (verbosity >= 100)
2002-
updateBounds(label, endKeyword, programKeyword, id, eos);
20031997
}
20041998

20051999
public void module() {
@@ -2020,8 +2014,6 @@ public void module_stmt(Token label, Token moduleKeyword, Token id, Token eos) {
20202014
contextClose("header");
20212015
setAttribute("name", id);
20222016
super.module_stmt(label, moduleKeyword, id, eos);
2023-
if (verbosity >= 100)
2024-
updateBounds(label, moduleKeyword, id, eos);
20252017
contextOpen("body");
20262018
contextOpen("specification");
20272019
contextOpen("declaration");
@@ -2043,8 +2035,6 @@ public void end_module_stmt(Token label, Token endKeyword, Token moduleKeyword,
20432035
}
20442036
contextClose("members");
20452037
super.end_module_stmt(label, endKeyword, moduleKeyword, id, eos);
2046-
if (verbosity >= 100)
2047-
updateBounds(label, endKeyword, moduleKeyword, id, eos);
20482038
}
20492039

20502040
public void module_subprogram(boolean hasPrefix) {
@@ -2059,8 +2049,6 @@ public void use_stmt(Token label, Token useKeyword, Token id, Token onlyKeyword,
20592049
contextOpen("use");
20602050
setAttribute("name", id);
20612051
super.use_stmt(label, useKeyword, id, onlyKeyword, eos, hasModuleNature, hasRenameList, hasOnly);
2062-
if (verbosity >= 100)
2063-
updateBounds(label, useKeyword, id, onlyKeyword, eos);
20642052
contextClose("use");
20652053
contextOpen("declaration");
20662054
}

0 commit comments

Comments
 (0)