Expose resetHtml in NavigationTable to all callers

This simplifies a calling pattern where a sibling class to the
subclass of NavigationTable wants to invoke resetHtml().

Change-Id: I1e5c148298ef41905df62916c44536ae8fe50ef9
This commit is contained in:
Shawn Pearce
2013-07-07 20:46:54 -07:00
parent 151bd07e6c
commit 1a523551a5

View File

@@ -259,7 +259,7 @@ public abstract class NavigationTable<RowItem> extends FancyFlexTable<RowItem> {
}
@Override
protected void resetHtml(SafeHtml body) {
public void resetHtml(SafeHtml body) {
currentRow = -1;
super.resetHtml(body);
}