File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
server/bundles/io.cloudbeaver.model/src/io/cloudbeaver/model/cli Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 20
20
import org .jkiss .code .NotNull ;
21
21
import org .jkiss .dbeaver .model .cli .ApplicationInstanceController ;
22
22
import org .jkiss .dbeaver .model .cli .ApplicationInstanceServer ;
23
- import org .jkiss .dbeaver .model .cli .CmdProcessResult ;
23
+ import org .jkiss .dbeaver .model .cli .CliProcessResult ;
24
24
25
25
import java .io .IOException ;
26
26
@@ -31,7 +31,7 @@ public CloudBeaverInstanceServer() throws IOException {
31
31
32
32
@ NotNull
33
33
@ Override
34
- public CmdProcessResult handleCommandLine (@ NotNull String [] args ) {
34
+ public CliProcessResult handleCommandLine (@ NotNull String [] args ) {
35
35
CommandLine cmd = CloudBeaverCommandLine .getInstance ().getCommandLine (args );
36
36
try {
37
37
return CloudBeaverCommandLine .getInstance ().executeCommandLineCommands (
@@ -40,7 +40,7 @@ public CmdProcessResult handleCommandLine(@NotNull String[] args) {
40
40
false
41
41
);
42
42
} catch (Exception e ) {
43
- return new CmdProcessResult ( CmdProcessResult .PostAction .ERROR , "Error executing command: " + e .getMessage ());
43
+ return new CliProcessResult ( CliProcessResult .PostAction .ERROR , "Error executing command: " + e .getMessage ());
44
44
}
45
45
}
46
46
}
You can’t perform that action at this time.
0 commit comments