Skip to content

Commit 2668948

Browse files
make dedup private
1 parent a9e489b commit 2668948

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sqldev/src/main/java/org/utplsql/sqldev/oddgen/RunGenerator.xtend

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,15 +100,15 @@ class RunGenerator implements OddgenGenerator2 {
100100
return new HashMap<String, Boolean>
101101
}
102102

103-
def private getPath(Node node, Connection conn) {
103+
private def getPath(Node node, Connection conn) {
104104
if (node.id == "SUITE" || node.id == "SUITEPATH") {
105105
return conn.metaData.userName
106106
} else {
107107
return node.id
108108
}
109109
}
110110

111-
def replaceTabsWithSpaces(CharSequence input, int indentSpaces) {
111+
private def replaceTabsWithSpaces(CharSequence input, int indentSpaces) {
112112
val spaces = String.format("%1$"+indentSpaces+"s", "")
113113
return input.toString.replace("\t", spaces)
114114
}

0 commit comments

Comments
 (0)