aboutsummaryrefslogtreecommitdiffstats
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.java19
1 files changed, 10 insertions, 9 deletions
diff --git a/guava/src/com/google/common/cache/Weigher.java b/guava/src/com/google/common/cache/Weigher.java
index 5720cb8..bbb0a33 100644
--- a/guava/src/com/google/common/cache/Weigher.java
+++ b/guava/src/com/google/common/cache/Weigher.java
@@ -1,30 +1,30 @@
/*
* 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
+ * 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.cache;
import com.google.common.annotations.Beta;
-import com.google.common.annotations.GwtCompatible;
/**
* Calculates the weights of cache entries.
*
- * @author Charles Fry
+ * @author fry@google.com (Charles Fry)
* @since 11.0
*/
@Beta
-@GwtCompatible
public interface Weigher<K, V> {
/**
@@ -34,4 +34,5 @@ public interface Weigher<K, V> {
* @return the weight of the entry; must be non-negative
*/
int weigh(K key, V value);
+
}