summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMoritz Neun <neun@google.com>2011-10-31 18:43:37 -0400
committerMichael Bolin <bolinfest@google.com>2011-10-31 18:43:37 -0400
commit1bc1d9cd121c752502a904886e1f02f60fcb7bd9 (patch)
treecdde82b544e0620245299aac005b253d77dc7c07
parent0095e3d6486475d17a26e88deb97ddeaea72578d (diff)
downloads2-geometry-library-java-1bc1d9cd121c752502a904886e1f02f60fcb7bd9.tar.gz
Needing owners approval for removing final keyword from S2LatLngRect in order to
fix broken build (http://test/ui#p=geo.gt) of java/com/google/geo/gt/geometry/GTLatLngRect.java (introduced by CL 24952612) Tested: javatests/com/google/common/geometry:all ------------- Created by MOE: http://code.google.com/p/moe-java MOE_MIGRATED_REVID=24955423
-rw-r--r--src/com/google/common/geometry/S2LatLngRect.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/google/common/geometry/S2LatLngRect.java b/src/com/google/common/geometry/S2LatLngRect.java
index fae637b..87aee3d 100644
--- a/src/com/google/common/geometry/S2LatLngRect.java
+++ b/src/com/google/common/geometry/S2LatLngRect.java
@@ -23,7 +23,7 @@ import com.google.common.base.Preconditions;
*
*/
-public final strictfp class S2LatLngRect implements S2Region {
+public strictfp class S2LatLngRect implements S2Region {
private final R1Interval lat;
private final S1Interval lng;