File tree 1 file changed +4
-4
lines changed
src/main/javascript/v3/josm 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ export function println() {
88
88
*
89
89
*/
90
90
export function clear ( ) {
91
- const action = ScriptingConsole . getInstance ( ) . getScriptLog ( ) . getClearAction ( )
91
+ const action = ScriptingConsole . static . getInstance ( ) . getScriptLog ( ) . getClearAction ( )
92
92
action . actionPerformed ( null )
93
93
}
94
94
@@ -100,7 +100,7 @@ export function clear() {
100
100
* console.show()
101
101
*/
102
102
export function show ( ) {
103
- ScriptingConsole . showScriptingConsole ( )
103
+ ScriptingConsole . static . showScriptingConsole ( )
104
104
}
105
105
106
106
/**
@@ -111,7 +111,7 @@ export function show() {
111
111
* console.hide()
112
112
*/
113
113
export function hide ( ) {
114
- ScriptingConsole . hideScriptingConsole ( )
114
+ ScriptingConsole . static . hideScriptingConsole ( )
115
115
}
116
116
117
117
/**
@@ -122,5 +122,5 @@ export function hide() {
122
122
* console.toggle()
123
123
*/
124
124
export function toggle ( ) {
125
- ScriptingConsole . toggleScriptingConsole ( )
125
+ ScriptingConsole . static . toggleScriptingConsole ( )
126
126
}
You can’t perform that action at this time.
0 commit comments