diff options
| author | Tobias Thierer <tobiast@google.com> | 2017-10-25 00:58:05 +0100 |
|---|---|---|
| committer | Tobias Thierer <tobiast@google.com> | 2017-12-13 03:57:26 +0000 |
| commit | 39e85382d5c6ba92164e92dcebb0de1e4a4dfbf1 (patch) | |
| tree | ff22812be5d75acf12e1616d8dcab266f656d427 /core/java/android/util/MutableInt.java | |
| parent | 7d1d80bb45f7abb49d6ccdbeb60da579e58a72ab (diff) | |
Move Mutable{Int,Long} from libcore to framework.
No libcore dependencies on these classes remain, so they
can now move to framework which already has all of the
other classes from android.util.
After this CL topic, libcore and framework no longer have
any classes from the same package.
Bug: 67901714
Test: make droid
Test: Treehugger
(cherry picked from commit 232f1eb387649e65008b88f86b81e5667321a735)
Change-Id: I65871516b762d8a53ebe01697e4d92f94903bfd3
Merged-In: I65871516b762d8a53ebe01697e4d92f94903bfd3
Diffstat (limited to 'core/java/android/util/MutableInt.java')
| -rw-r--r-- | core/java/android/util/MutableInt.java | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/core/java/android/util/MutableInt.java b/core/java/android/util/MutableInt.java new file mode 100644 index 000000000000..a3d8606d916a --- /dev/null +++ b/core/java/android/util/MutableInt.java @@ -0,0 +1,27 @@ +/* + * 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; + +/** + */ +public final class MutableInt { + public int value; + + public MutableInt(int value) { + this.value = value; + } +} |
