use of edu.umd.cs.findbugs.annotations.Nullable in project hbase by apache.
the class TopScreenView method doResizeIfNecessary.
@Nullable
@Override
public TerminalSize doResizeIfNecessary() {
TerminalSize terminalSize = super.doResizeIfNecessary();
if (terminalSize == null) {
return null;
}
updatePageSize(terminalSize);
return terminalSize;
}
use of edu.umd.cs.findbugs.annotations.Nullable in project hbase by apache.
the class TopScreenView method getTerminalSize.
@Nullable
@Override
public TerminalSize getTerminalSize() {
TerminalSize terminalSize = super.getTerminalSize();
if (terminalSize == null) {
return null;
}
updatePageSize(terminalSize);
return terminalSize;
}
Aggregations