Skip to content

Commit

Permalink
fix issue #340: cannot find symbol Assert.assertNotNull
Browse files Browse the repository at this point in the history
- added default java assert in place of Junit assertNotNull

Origin-PR: #25
Contributed-By: @scurtoni
  • Loading branch information
mauron85 committed Jan 31, 2019
1 parent d7a4a13 commit ec334ba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
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

0 comments on commit ec334ba

Please sign in to comment.