Skip to content

Commit

Permalink
Remove Xmx on PaperVisionProcessRunner
Browse files Browse the repository at this point in the history
  • Loading branch information
serivesmejia committed Nov 27, 2024
1 parent bccf9bb commit d0c4e52
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,16 +69,15 @@ object PaperVisionProcessRunner {
EOCVSimIpcPaperVisionMain::class.java,
SLF4JIOReceiver(logger),
classpath,
listOf("-XstartOnFirstThread", "-Djava.awt.headless=true", "-Xmx2048m"),
listOf("-XstartOnFirstThread", "-Djava.awt.headless=true"),
programParams
)
} else {
JavaProcess.execClasspath(
EOCVSimIpcPaperVisionMain::class.java,
SLF4JIOReceiver(logger),
classpath,
listOf("-Xmx2048m"),
programParams,
null, programParams,
)
}

Expand Down

0 comments on commit d0c4e52

Please sign in to comment.