mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
add space after ,
This commit is contained in:
parent
9831e0bb60
commit
81d4dee89e
1 changed files with 1 additions and 1 deletions
|
|
@ -311,7 +311,7 @@ public class HDFSFileInterpreter extends FileInterpreter {
|
|||
String beforeLastPeriod = unfinished.substring(0, unfinished.lastIndexOf('.') + 1);
|
||||
//beforeLastPeriod should be the start of fs.pathSuffix, so take the end of it.
|
||||
String suggestedFinish = fs.pathSuffix.substring(beforeLastPeriod.length());
|
||||
suggestions.add(new InterpreterCompletion(suggestedFinish,suggestedFinish));
|
||||
suggestions.add(new InterpreterCompletion(suggestedFinish, suggestedFinish));
|
||||
}
|
||||
}
|
||||
return suggestions;
|
||||
|
|
|
|||
Loading…
Reference in a new issue