Fix typo in debug code

Change-Id: Iffb3effa3fd659be3df3208bb587fea83bc9116e
This commit is contained in:
Marc Blank 2010-12-29 20:51:16 -08:00
parent 268597f68d
commit 1c1bd6a3eb
1 changed files with 1 additions and 1 deletions

View File

@ -317,7 +317,7 @@ public class EmailProvider extends ContentProvider {
private static int findMatch(Uri uri, String methodName) {
int match = sURIMatcher.match(uri);
if (match < 0) {
throw new IllegalArgumentException("Unknown uri: uri");
throw new IllegalArgumentException("Unknown uri: " + uri);
} else if (Email.LOGD) {
Log.v(TAG, methodName + ": uri=" + uri + ", match is " + match);
}