Merge pull request #2 from ravjit-cliqz/dev

Changed the scope of removeTab to private
This commit is contained in:
Stefano Pacifici 2015-11-03 16:11:26 +01:00
commit 63f2c5f798

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;
}