Browse Source

Changed the scope of removeTab to private

master
Ravjit Singh Uppal 9 years ago
parent
commit
cc75ba1bc7
  1. 2
      app/src/main/java/acr/browser/lightning/activity/TabsManager.java

2
app/src/main/java/acr/browser/lightning/activity/TabsManager.java

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

Loading…
Cancel
Save