Skip to content
Snippets Groups Projects
Commit 623013ac authored by Isaac Katzenelson's avatar Isaac Katzenelson
Browse files

Fix null object reference

Bug: 281487373
Test: atest android.net.wifi.sharedconnectivity.cts
Change-Id: Iedbf8e041891b7d3aabf8378460a3f1ec4e487a6
parent 7b1b0468
No related branches found
No related tags found
No related merge requests found
......@@ -196,7 +196,7 @@ public final class SharedConnectivitySettingsState implements Parcelable {
public String toString() {
return new StringBuilder("SharedConnectivitySettingsState[")
.append("instantTetherEnabled=").append(mInstantTetherEnabled)
.append("PendingIntent=").append(mInstantTetherSettingsPendingIntent.toString())
.append("PendingIntent=").append(mInstantTetherSettingsPendingIntent)
.append("extras=").append(mExtras.toString())
.append("]").toString();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment