Skip to content

Commit

Permalink
fix(android): use this not self in java, fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
dionlarson committed Sep 3, 2022
1 parent c9c89a0 commit 442252a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ public List<BundleInfo> list() {

public Boolean delete(final String id, final Boolean removeInfo) throws IOException {
final BundleInfo deleted = this.getBundleInfo(id);
if (deleted.isBuiltin() || self.getCurrentBundleId() == id) {
if (deleted.isBuiltin() || this.getCurrentBundleId() == id) {
Log.e(TAG, "Cannot delete " + id);
return false;
}
Expand Down

0 comments on commit 442252a

Please sign in to comment.