Rename run method to runBuilder in InteractiveConsole and update references; refactor file handling in Plot and SimulationBuilder for improved clarity and consistency

This commit is contained in:
2025-03-16 16:59:12 +01:00
parent 60ef40c0ab
commit f4d3262cb7
6 changed files with 5 additions and 34 deletions

View File

@@ -141,7 +141,7 @@ public class TestInteractions {
var inputs = String.join("\n", commands);
var bytes = inputs.getBytes();
var in = new ByteArrayInputStream(bytes);
return new InteractiveConsole(out, in).run();
return new InteractiveConsole(out, in).runBuilder();
}
/*