Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix issue #340: cannot find symbol Assert.assertNotNull #25

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
android.enableUnitTestBinaryResources=true
android.builder.sdkDownload=true
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,6 @@
import android.os.Bundle;
import android.os.Parcelable;
import android.support.annotation.IntDef;

import junit.framework.Assert;

import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;

Expand Down Expand Up @@ -161,7 +158,7 @@ public LocationServiceIntentBuilder setCommand(@CommandId int commandId, Parcela
}

public Intent build() {
Assert.assertNotNull("Context can not be null!", mContext);
assert mContext != null : "Context can not be null!";
Intent intent = new Intent(mContext, LocationServiceImpl.class);
if (mCommand != null) {
intent.putExtra(KEY_COMMAND, mCommand.toBundle());
Expand Down