Skip to content
Snippets Groups Projects
Commit 66287f89 authored by Florian Angerer's avatar Florian Angerer
Browse files

Fix style.

parent ef61682c
No related branches found
No related tags found
No related merge requests found
...@@ -183,8 +183,9 @@ public class RCommand { ...@@ -183,8 +183,9 @@ public class RCommand {
public static ConsoleHandler createConsoleHandler(RCmdOptions options, DelegatingConsoleHandler useDelegatingWrapper, InputStream inStream, OutputStream outStream) { public static ConsoleHandler createConsoleHandler(RCmdOptions options, DelegatingConsoleHandler useDelegatingWrapper, InputStream inStream, OutputStream outStream) {
/* /*
* Whether the input is from stdin, a file (-f), or an expression on the command line (-e) it goes * Whether the input is from stdin, a file (-f), or an expression on the command line (-e)
* through the console. N.B. -f and -e can't be used together and this is already checked. * it goes through the console. N.B. -f and -e can't be used together and this is already
* checked.
*/ */
RStartParams rsp = new RStartParams(options, false); RStartParams rsp = new RStartParams(options, false);
String fileArgument = rsp.getFileArgument(); String fileArgument = rsp.getFileArgument();
...@@ -192,8 +193,8 @@ public class RCommand { ...@@ -192,8 +193,8 @@ public class RCommand {
List<String> lines; List<String> lines;
try { try {
/* /*
* If initial==false, ~ expansion will not have been done and the open will fail. It's harmless to * If initial==false, ~ expansion will not have been done and the open will fail.
* always do it. * It's harmless to always do it.
*/ */
File file = fileArgument.startsWith("~") ? new File(System.getProperty("user.home") + fileArgument.substring(1)) : new File(fileArgument); File file = fileArgument.startsWith("~") ? new File(System.getProperty("user.home") + fileArgument.substring(1)) : new File(fileArgument);
lines = Files.readAllLines(file.toPath()); lines = Files.readAllLines(file.toPath());
...@@ -215,8 +216,9 @@ public class RCommand { ...@@ -215,8 +216,9 @@ public class RCommand {
boolean useReadLine = isInteractive && !rsp.noReadline(); boolean useReadLine = isInteractive && !rsp.noReadline();
if (useDelegatingWrapper != null) { if (useDelegatingWrapper != null) {
/* /*
* If we are in embedded mode, the creation of ConsoleReader and the ConsoleHandler should be lazy, * If we are in embedded mode, the creation of ConsoleReader and the ConsoleHandler
* as these may not be necessary and can cause hangs if stdin has been redirected. * should be lazy, as these may not be necessary and can cause hangs if stdin has
* been redirected.
*/ */
Supplier<ConsoleHandler> delegateFactory = useReadLine ? () -> new JLineConsoleHandler(inStream, outStream, rsp.isSlave()) Supplier<ConsoleHandler> delegateFactory = useReadLine ? () -> new JLineConsoleHandler(inStream, outStream, rsp.isSlave())
: () -> new DefaultConsoleHandler(inStream, outStream, isInteractive); : () -> new DefaultConsoleHandler(inStream, outStream, isInteractive);
...@@ -249,14 +251,14 @@ public class RCommand { ...@@ -249,14 +251,14 @@ public class RCommand {
} }
/** /**
* The read-eval-print loop, which can take input from a console, command line expression or a file. * The read-eval-print loop, which can take input from a console, command line expression or a
* There are two ways the repl can terminate: * file. There are two ways the repl can terminate:
* <ol> * <ol>
* <li>A {@code quit} command is executed successfully.</li> * <li>A {@code quit} command is executed successfully.</li>
* <li>EOF on the input.</li> * <li>EOF on the input.</li>
* </ol> * </ol>
* In case 2, we must implicitly execute a {@code quit("default, 0L, TRUE} command before exiting. * In case 2, we must implicitly execute a {@code quit("default, 0L, TRUE} command before
* So,in either case, we never return. * exiting. So,in either case, we never return.
*/ */
public static int readEvalPrint(Context context, ConsoleHandler consoleHandler, File srcFile) { public static int readEvalPrint(Context context, ConsoleHandler consoleHandler, File srcFile) {
int lastStatus = 0; int lastStatus = 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment