summaryrefslogtreecommitdiffstats
path: root/src_pd
diff options
context:
space:
mode:
authorSascha Haeberling <haeberling@google.com>2014-07-29 17:32:17 -0700
committerSascha Haeberling <haeberling@google.com>2014-07-29 17:32:17 -0700
commitd674447d33e21fcaca64ee916953d8b3c0288390 (patch)
tree738c39e15f6ab80bc1c09e5bb4e9d52db5446418 /src_pd
parentee36c5f591ac181a10692b2ec2b96de5251c4abb (diff)
downloadandroid_packages_apps_Camera2-d674447d33e21fcaca64ee916953d8b3c0288390.tar.gz
android_packages_apps_Camera2-d674447d33e21fcaca64ee916953d8b3c0288390.tar.bz2
android_packages_apps_Camera2-d674447d33e21fcaca64ee916953d8b3c0288390.zip
Add empty version of SystemProperties interface.
This is so that we can use it in Camera2 code. Change-Id: I764adb7377b91b5b54a33535188eb6d0d5159253
Diffstat (limited to 'src_pd')
-rw-r--r--src_pd/com/android/camera/util/SystemProperties.java27
1 files changed, 27 insertions, 0 deletions
diff --git a/src_pd/com/android/camera/util/SystemProperties.java b/src_pd/com/android/camera/util/SystemProperties.java
new file mode 100644
index 000000000..0932e1be0
--- /dev/null
+++ b/src_pd/com/android/camera/util/SystemProperties.java
@@ -0,0 +1,27 @@
+/*
+ * Copyright (C) 2014 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package com.android.camera.util;
+
+public final class SystemProperties {
+
+ public static String get(String key, String defaultValue) {
+ return defaultValue;
+ }
+
+ private SystemProperties() {
+ }
+}