aboutsummaryrefslogtreecommitdiff
path: root/guava/src/com/google/common/cache/Weigher.java
diff options
context:
space:
mode:
Diffstat (limited to 'guava/src/com/google/common/cache/Weigher.java')
-rw-r--r--guava/src/com/google/common/cache/Weigher.java9
1 files changed, 5 insertions, 4 deletions
diff --git a/guava/src/com/google/common/cache/Weigher.java b/guava/src/com/google/common/cache/Weigher.java
index 7372a4696..5720cb827 100644
--- a/guava/src/com/google/common/cache/Weigher.java
+++ b/guava/src/com/google/common/cache/Weigher.java
@@ -2,18 +2,19 @@
* Copyright (C) 2011 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
+ * 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.
+ * or implied. See the License for the specific language governing permissions and limitations
+ * under the License.
*/
package com.google.common.cache;
+import com.google.common.annotations.Beta;
import com.google.common.annotations.GwtCompatible;
/**
@@ -22,8 +23,8 @@ import com.google.common.annotations.GwtCompatible;
* @author Charles Fry
* @since 11.0
*/
+@Beta
@GwtCompatible
-@FunctionalInterface
public interface Weigher<K, V> {
/**