Changed the scope of removeTab to private

This commit is contained in:
Ravjit Singh Uppal 2015-11-03 15:45:44 +01:00
parent 006eb5e191
commit cc75ba1bc7

View File

@ -189,7 +189,7 @@ public class TabsManager {
* @return The removed tab reference or null
*/
@Nullable
public synchronized LightningView removeTab(final int position) {
private synchronized LightningView removeTab(final int position) {
if (position >= mWebViewList.size()) {
return null;
}