We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a9e489b commit 2668948Copy full SHA for 2668948
sqldev/src/main/java/org/utplsql/sqldev/oddgen/RunGenerator.xtend
@@ -100,15 +100,15 @@ class RunGenerator implements OddgenGenerator2 {
100
return new HashMap<String, Boolean>
101
}
102
103
- def private getPath(Node node, Connection conn) {
+ private def getPath(Node node, Connection conn) {
104
if (node.id == "SUITE" || node.id == "SUITEPATH") {
105
return conn.metaData.userName
106
} else {
107
return node.id
108
109
110
111
- def replaceTabsWithSpaces(CharSequence input, int indentSpaces) {
+ private def replaceTabsWithSpaces(CharSequence input, int indentSpaces) {
112
val spaces = String.format("%1$"+indentSpaces+"s", "")
113
return input.toString.replace("\t", spaces)
114
0 commit comments