aboutsummaryrefslogtreecommitdiff
path: root/guava/src/com/google/common/base/FinalizableWeakReference.java
diff options
context:
space:
mode:
Diffstat (limited to 'guava/src/com/google/common/base/FinalizableWeakReference.java')
-rw-r--r--guava/src/com/google/common/base/FinalizableWeakReference.java18
1 files changed, 9 insertions, 9 deletions
diff --git a/guava/src/com/google/common/base/FinalizableWeakReference.java b/guava/src/com/google/common/base/FinalizableWeakReference.java
index fb3b09bb7..b14d0238a 100644
--- a/guava/src/com/google/common/base/FinalizableWeakReference.java
+++ b/guava/src/com/google/common/base/FinalizableWeakReference.java
@@ -1,20 +1,21 @@
/*
* Copyright (C) 2007 The Guava Authors
*
- * 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
+ * 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.
+ * 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.google.common.base;
-import com.google.common.annotations.GwtIncompatible;
import java.lang.ref.ReferenceQueue;
import java.lang.ref.WeakReference;
@@ -24,9 +25,8 @@ import java.lang.ref.WeakReference;
* ReferenceQueue}.
*
* @author Bob Lee
- * @since 2.0
+ * @since 2.0 (imported from Google Collections Library)
*/
-@GwtIncompatible
public abstract class FinalizableWeakReference<T> extends WeakReference<T>
implements FinalizableReference {
/**