mirror of
https://github.com/corda/corda.git
synced 2025-01-16 01:40:17 +00:00
More code review tweaks.
This commit is contained in:
parent
2664a2905c
commit
34797c2735
@ -28,7 +28,6 @@ class R3Pty(val name: String, settings: SettingsProvider, dimension: Dimension,
|
||||
}
|
||||
|
||||
private fun createTtyConnector(command: Array<String>, environment: Map<String, String>, workingDir: String?): TtyConnector {
|
||||
try {
|
||||
val process = PtyProcess.exec(command, environment, workingDir)
|
||||
|
||||
try {
|
||||
@ -38,15 +37,10 @@ class R3Pty(val name: String, settings: SettingsProvider, dimension: Dimension,
|
||||
process.waitFor(30, TimeUnit.SECONDS)
|
||||
throw e
|
||||
}
|
||||
} catch (e: Exception) {
|
||||
throw IllegalStateException(e.message, e)
|
||||
}
|
||||
}
|
||||
|
||||
fun run(args: Array<String>, envs: Map<String, String>, workingDir: String?) {
|
||||
if (terminal.isSessionRunning) {
|
||||
throw IllegalStateException(terminal.sessionName + " is already running")
|
||||
}
|
||||
check(!terminal.isSessionRunning, { "${terminal.sessionName} is already running" })
|
||||
|
||||
val environment = HashMap<String, String>(envs)
|
||||
if (!UIUtil.isWindows) {
|
||||
|
Loading…
Reference in New Issue
Block a user