[Android] Fix a logging message in GPLWaiverDialogFragment. Thanks to Alcaro for pointing it out.

This commit is contained in:
Lioncash 2013-11-17 19:23:41 -05:00
parent e33c219b10
commit 4562f865b8

View File

@ -52,7 +52,7 @@ public final class GPLWaiverDialogFragment extends DialogFragment
if (!gplv3 && !gplv2)
{
String libName = lib.getName();
Log.i("GPL WAIVER", "Deleting non-GPL core" + libName + "...");
Log.i("GPL WAIVER", "Deleting non-GPL core " + libName + "...");
lib.delete();
}
}