From 693a5b7a18066d4757d49a44214356a3dd9f61a0 Mon Sep 17 00:00:00 2001 From: Mangesh Ghiware Date: Thu, 14 Mar 2013 10:27:04 -0700 Subject: [PATCH] Use plurals for table names for consistency. Change-Id: I663c0085ed467f3f61f6060147374d9128967e2d --- src/com/android/photos/data/PhotoProvider.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/com/android/photos/data/PhotoProvider.java b/src/com/android/photos/data/PhotoProvider.java index 084401d16..8413206b1 100644 --- a/src/com/android/photos/data/PhotoProvider.java +++ b/src/com/android/photos/data/PhotoProvider.java @@ -84,7 +84,7 @@ public class PhotoProvider extends SQLiteContentProvider { */ public static interface Photos extends BaseColumns { /** Internal database table used for basic photo information. */ - public static final String TABLE = "photo"; + public static final String TABLE = "photos"; /** Content URI for basic photo and video information. */ public static final Uri CONTENT_URI = Uri.withAppendedPath(BASE_CONTENT_URI, TABLE); @@ -123,7 +123,7 @@ public class PhotoProvider extends SQLiteContentProvider { */ public static interface Albums extends BaseColumns { /** Internal database table used album information. */ - public static final String TABLE = "album"; + public static final String TABLE = "albums"; /** Content URI for album information. */ public static final Uri CONTENT_URI = Uri.withAppendedPath(BASE_CONTENT_URI, TABLE); -- 2.11.0