diff options
author | Elliott Hughes <enh@google.com> | 2014-04-23 17:53:37 -0700 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2014-04-24 16:47:32 -0700 |
commit | 5d930cadc8f62aee5f18e7921296fe66a54f18ab (patch) | |
tree | e4d8b5da53522515d28c601520c2cb6ef6e8b0cf /luni/src/main/java/android/util/MutableDouble.java | |
parent | 4d402932d370f12f43045518dac4eeef542648c4 (diff) | |
download | libcore-5d930cadc8f62aee5f18e7921296fe66a54f18ab.zip libcore-5d930cadc8f62aee5f18e7921296fe66a54f18ab.tar.gz libcore-5d930cadc8f62aee5f18e7921296fe66a54f18ab.tar.bz2 |
Groundwork towards making the Libcore.os functionality public.
Change-Id: Ie700aa16d91fba53fc5eb2555829cb74d84b12ad
Diffstat (limited to 'luni/src/main/java/android/util/MutableDouble.java')
-rw-r--r-- | luni/src/main/java/android/util/MutableDouble.java | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/luni/src/main/java/android/util/MutableDouble.java b/luni/src/main/java/android/util/MutableDouble.java new file mode 100644 index 0000000..3e2cc3a --- /dev/null +++ b/luni/src/main/java/android/util/MutableDouble.java @@ -0,0 +1,28 @@ +/* + * Copyright (C) 2011 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 android.util; + +/** + * @hide + */ +public final class MutableDouble { + public double value; + + public MutableDouble(double value) { + this.value = value; + } +} |