Skip to content

Commit 09a6d23

Browse files
authored
added missing semi-colon for statement
1 parent 25e8a29 commit 09a6d23

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spark/src/main/java/org/apache/zeppelin/spark/ZeppelinR.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ public void open() throws IOException {
143143
cmd.addArgument(Integer.toString(sparkVersion.toNumber()));
144144

145145
// dump out the R command to facilitate manually running it, e.g. for fault diagnosis purposes
146-
logger.debug(cmd)
146+
logger.debug(cmd);
147147

148148
executor = new DefaultExecutor();
149149
outputStream = new SparkOutputStream(logger);

0 commit comments

Comments
 (0)