check for null line
This commit is contained in:
parent
72588a74dc
commit
9afd3392ed
|
@ -52,7 +52,7 @@ public class Getline {
|
|||
//XXX provide pure-java fallback
|
||||
String line = getline(prompt);
|
||||
if (addToHistory) {
|
||||
histadd(line);
|
||||
addToHistory(line);
|
||||
}
|
||||
return line;
|
||||
}
|
||||
|
@ -64,6 +64,11 @@ public class Getline {
|
|||
}
|
||||
|
||||
public void addToHistory(String line) {
|
||||
if ((line == null) ||
|
||||
(line.length() == 0))
|
||||
{
|
||||
return;
|
||||
}
|
||||
histadd(line);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue