2626import static com .mapcode .CheckArgs .checkNonnull ;
2727import static com .mapcode .Mapcode .getPrecisionFormat ;
2828
29+ // ----------------------------------------------------------------------------------------------
30+ // Package private implementation class. For internal use within the mapcode implementation only.
31+ //----------------------------------------------------------------------------------------------
32+
2933/**
30- * ----------------------------------------------------------------------------------------------
31- * Mapcode public interface.
32- * ----------------------------------------------------------------------------------------------
33- *
3434 * This class is the external Java interface for encoding and decoding mapcodes.
3535 */
3636@ SuppressWarnings ("MagicNumber" )
@@ -43,11 +43,9 @@ private MapcodeCodec() {
4343 // Prevent instantiation.
4444 }
4545
46- /**
47- * ------------------------------------------------------------------------------------------
48- * Encoding latitude, longitude to mapcodes.
49- * ------------------------------------------------------------------------------------------
50- */
46+ // ------------------------------------------------------------------------------------------
47+ // Encoding latitude, longitude to mapcodes.
48+ // ------------------------------------------------------------------------------------------
5149
5250 /**
5351 * Encode a lat/lon pair to a mapcode with territory information. This produces a non-empty list of mapcode,
@@ -243,11 +241,10 @@ public static Mapcode encodeToInternational(@Nonnull final Point point)
243241 return encodeToInternational (point .getLatDeg (), point .getLonDeg ());
244242 }
245243
246- /**
247- * ------------------------------------------------------------------------------------------
248- * Decoding mapcodes back to latitude, longitude.
249- * ------------------------------------------------------------------------------------------
250- */
244+ // ------------------------------------------------------------------------------------------
245+ // Decoding mapcodes back to latitude, longitude.
246+ // ------------------------------------------------------------------------------------------
247+ //
251248
252249 /**
253250 * Decode a mapcode to a Point. The decoding process may fail for local mapcodes,
0 commit comments