diff options
author | Elliott Hughes <enh@google.com> | 2014-04-25 02:07:50 +0000 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2014-04-25 02:07:50 +0000 |
commit | 0c1b4875b58d0f67432684defdeddd2c5d64f478 (patch) | |
tree | c8a2eb6fc391c10edf6a707b916eab436528264d | |
parent | 510b95208a6ec9b92cd9debe954c338a8ca8cf88 (diff) | |
download | libcore-0c1b4875b58d0f67432684defdeddd2c5d64f478.zip libcore-0c1b4875b58d0f67432684defdeddd2c5d64f478.tar.gz libcore-0c1b4875b58d0f67432684defdeddd2c5d64f478.tar.bz2 |
Revert "Fix internal master until I have access again."
This reverts commit 510b95208a6ec9b92cd9debe954c338a8ca8cf88.
Change-Id: Ifaabadfb43b61bf72bf436451612ebf629a70648
-rw-r--r-- | luni/src/main/java/libcore/util/MutableInt.java | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/luni/src/main/java/libcore/util/MutableInt.java b/luni/src/main/java/libcore/util/MutableInt.java deleted file mode 100644 index c8feb3a..0000000 --- a/luni/src/main/java/libcore/util/MutableInt.java +++ /dev/null @@ -1,25 +0,0 @@ -/* - * 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 libcore.util; - -public final class MutableInt { - public int value; - - public MutableInt(int value) { - this.value = value; - } -} |