Skip to content

Commit 8157552

Browse files
committed
remove comment on serialVersionUID
1 parent 7bce9dd commit 8157552

38 files changed

+38
-38
lines changed

src/main/java/com/google/maps/model/AddressComponent.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
* Developer's Guide</a> for more detail.
2626
*/
2727
public class AddressComponent implements Serializable {
28-
/** The default serialVersionUID */
28+
2929
private static final long serialVersionUID = 1L;
3030

3131
/** The full text description or name of the address component as returned by the Geocoder. */

src/main/java/com/google/maps/model/AutocompletePrediction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
* Autocomplete Responses</a> for more detail.
2626
*/
2727
public class AutocompletePrediction implements Serializable {
28-
/** The default serialVersionUID */
28+
2929
private static final long serialVersionUID = 1L;
3030

3131
/** Description of the matched prediction. */

src/main/java/com/google/maps/model/AutocompleteStructuredFormatting.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
/** The structured formatting info for a {@link com.google.maps.model.AutocompletePrediction}. */
2121
public class AutocompleteStructuredFormatting implements Serializable {
22-
/** The default serialVersionUID */
22+
2323
private static final long serialVersionUID = 1L;
2424

2525
/** The main text of a prediction, usually the name of the place. */

src/main/java/com/google/maps/model/Bounds.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
/** The northeast and southwest points that delineate the outer bounds of a map. */
2121
public class Bounds implements Serializable {
22-
/** The default serialVersionUID */
22+
2323
private static final long serialVersionUID = 1L;
2424
/** The northeast corner of the bounding box. */
2525
public LatLng northeast;

src/main/java/com/google/maps/model/CellTower.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
* Tower Object</a> for more detail.
2828
*/
2929
public class CellTower implements Serializable {
30-
/** The default serialVersionUID */
30+
3131
private static final long serialVersionUID = 1L;
3232

3333
public CellTower() {}

src/main/java/com/google/maps/model/DirectionsLeg.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
* documentation</a> for more detail.
2626
*/
2727
public class DirectionsLeg implements Serializable {
28-
/** The default serialVersionUID */
28+
2929
private static final long serialVersionUID = 1L;
3030

3131
/**

src/main/java/com/google/maps/model/DirectionsResult.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* Directions API</a> for more detail.
2525
*/
2626
public class DirectionsResult implements Serializable {
27-
/** The default serialVersionUID */
27+
2828
private static final long serialVersionUID = 1L;
2929

3030
/**

src/main/java/com/google/maps/model/DirectionsRoute.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
* Routes</a> for more detail.
2727
*/
2828
public class DirectionsRoute implements Serializable {
29-
/** The default serialVersionUID */
29+
3030
private static final long serialVersionUID = 1L;
3131
/**
3232
* A short textual description for the route, suitable for naming and disambiguating the route

src/main/java/com/google/maps/model/DirectionsStep.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
* Walker", and "Turn left onto Innes Ave".
3838
*/
3939
public class DirectionsStep implements Serializable {
40-
/** The default serialVersionUID */
40+
4141
private static final long serialVersionUID = 1L;
4242

4343
/** Formatted instructions for this step, presented as an HTML text string. */

src/main/java/com/google/maps/model/Distance.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
/** The distance component for Directions API results. */
2121
public class Distance implements Serializable {
22-
/** The default serialVersionUID */
22+
2323
private static final long serialVersionUID = 1L;
2424

2525
/**

src/main/java/com/google/maps/model/DistanceMatrix.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
* Distance Matrix Results</a>
2626
*/
2727
public class DistanceMatrix implements Serializable {
28-
/** The default serialVersionUID */
28+
2929
private static final long serialVersionUID = 1L;
3030

3131
/**

src/main/java/com/google/maps/model/DistanceMatrixElement.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* successful and failed elements depending on the connectivity of the origin and destination.
2525
*/
2626
public class DistanceMatrixElement implements Serializable {
27-
/** The default serialVersionUID */
27+
2828
private static final long serialVersionUID = 1L;
2929

3030
/**

src/main/java/com/google/maps/model/DistanceMatrixRow.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
* single origin.
2323
*/
2424
public class DistanceMatrixRow implements Serializable {
25-
/** The default serialVersionUID */
25+
2626
private static final long serialVersionUID = 1L;
2727

2828
/** The results for this row, or individual origin. */

src/main/java/com/google/maps/model/Duration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
/** The duration component for Directions API results. */
2121
public class Duration implements Serializable {
22-
/** The default serialVersionUID */
22+
2323
private static final long serialVersionUID = 1L;
2424

2525
/**

src/main/java/com/google/maps/model/ElevationResult.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
/** An Elevation API result. */
2121
public class ElevationResult implements Serializable {
22-
/** The default serialVersionUID */
22+
2323
private static final long serialVersionUID = 1L;
2424

2525
public double elevation;

src/main/java/com/google/maps/model/EncodedPolyline.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
* Encoded Polyline Algorithm</a> for more detail on the protocol.
2727
*/
2828
public class EncodedPolyline implements Serializable {
29-
/** The default serialVersionUID */
29+
3030
private static final long serialVersionUID = 1L;
3131

3232
private final String points;

src/main/java/com/google/maps/model/Fare.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
* Routes Documentation</a> for more detail.
2727
*/
2828
public class Fare implements Serializable {
29-
/** The default serialVersionUID */
29+
3030
private static final long serialVersionUID = 1L;
3131

3232
/** The currency that the amount is expressed in. */

src/main/java/com/google/maps/model/GeocodedWaypoint.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* Geocoded Waypoints</a> for more detail.
2525
*/
2626
public class GeocodedWaypoint implements Serializable {
27-
/** The default serialVersionUID */
27+
2828
private static final long serialVersionUID = 1L;
2929
/** The status code resulting from the geocoding operation for this waypoint. */
3030
public GeocodedWaypointStatus geocoderStatus;

src/main/java/com/google/maps/model/GeocodingResult.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
/** A result from a Geocoding API call. */
2121
public class GeocodingResult implements Serializable {
22-
/** The default serialVersionUID */
22+
2323
private static final long serialVersionUID = 1L;
2424

2525
/** The separate address components in this result. */

src/main/java/com/google/maps/model/GeolocationPayload.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
* <p>The following fields are supported, and all fields are optional:
3232
*/
3333
public class GeolocationPayload implements Serializable {
34-
/** The default serialVersionUID */
34+
3535
private static final long serialVersionUID = 1L;
3636

3737
public GeolocationPayload() {}

src/main/java/com/google/maps/model/GeolocationResult.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
* responses</a> for more detail.
2828
*/
2929
public class GeolocationResult implements Serializable {
30-
/** The default serialVersionUID */
30+
3131
private static final long serialVersionUID = 1L;
3232
/** The user’s estimated latitude and longitude. */
3333
public LatLng location;

src/main/java/com/google/maps/model/Geometry.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
/** The geometry of a Geocoding result. */
2121
public class Geometry implements Serializable {
22-
/** The default serialVersionUID */
22+
2323
private static final long serialVersionUID = 1L;
2424
/**
2525
* The bounding box which can fully contain the returned result (optionally returned). Note that

src/main/java/com/google/maps/model/LatLng.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
/** A place on Earth, represented by a latitude/longitude pair. */
2323
public class LatLng implements UrlValue, Serializable {
24-
/** The default serialVersionUID */
24+
2525
private static final long serialVersionUID = 1L;
2626

2727
/** The latitude of this location. */

src/main/java/com/google/maps/model/OpeningHours.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* Results</a> for more details.
2525
*/
2626
public class OpeningHours implements Serializable {
27-
/** The default serialVersionUID */
27+
2828
private static final long serialVersionUID = 1L;
2929
/**
3030
* Whether the place is open at the current time.

src/main/java/com/google/maps/model/Photo.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* for more details.
2525
*/
2626
public class Photo implements Serializable {
27-
/** The default serialVersionUID */
27+
2828
private static final long serialVersionUID = 1L;
2929
/** Used to identify the photo when you perform a Photo request. */
3030
public String photoReference;

src/main/java/com/google/maps/model/PhotoResult.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* for more details.
2525
*/
2626
public class PhotoResult implements Serializable {
27-
/** The default serialVersionUID */
27+
2828
private static final long serialVersionUID = 1L;
2929
/** The image data from the Photos API call. */
3030
public byte[] imageData;

src/main/java/com/google/maps/model/PlaceDetails.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
* Place Details Results</a> for more detail.
2929
*/
3030
public class PlaceDetails implements Serializable {
31-
/** The default serialVersionUID */
31+
3232
private static final long serialVersionUID = 1L;
3333

3434
/** A list of separate address components that comprise the address of this place. */

src/main/java/com/google/maps/model/PlacesSearchResponse.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
* Response</a> for more detail.
2626
*/
2727
public class PlacesSearchResponse implements Serializable {
28-
/** The default serialVersionUID */
28+
2929
private static final long serialVersionUID = 1L;
3030

3131
/** The list of Search Results. */

src/main/java/com/google/maps/model/PlacesSearchResult.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
* Results</a> for more detail.
2727
*/
2828
public class PlacesSearchResult implements Serializable {
29-
/** The default serialVersionUID */
29+
3030
private static final long serialVersionUID = 1L;
3131

3232
/** The human-readable address of this place. */

src/main/java/com/google/maps/model/SnappedPoint.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
/** A point that has been snapped to a road by the Roads API. */
2121
public class SnappedPoint implements Serializable {
22-
/** The default serialVersionUID */
22+
2323
private static final long serialVersionUID = 1L;
2424
/** A latitude/longitude value representing the snapped location. */
2525
public LatLng location;

src/main/java/com/google/maps/model/SnappedSpeedLimitResponse.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
/** A combined snap-to-roads and speed limit response. */
2121
public class SnappedSpeedLimitResponse implements Serializable {
22-
/** The default serialVersionUID */
22+
2323
private static final long serialVersionUID = 1L;
2424

2525
/** Speed limit results. */

src/main/java/com/google/maps/model/SpeedLimit.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
/** A speed limit result from the Roads API. */
2121
public class SpeedLimit implements Serializable {
22-
/** The default serialVersionUID */
22+
2323
private static final long serialVersionUID = 1L;
2424
/**
2525
* A unique identifier for a place. All placeIds returned by the Roads API will correspond to road

src/main/java/com/google/maps/model/StopDetails.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
* details</a> for more detail.
2626
*/
2727
public class StopDetails implements Serializable {
28-
/** The default serialVersionUID */
28+
2929
private static final long serialVersionUID = 1L;
3030

3131
/** The name of the transit station/stop. E.g. {@code "Union Square"}. */

src/main/java/com/google/maps/model/TransitAgency.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
* Details</a> for more detail.
2626
*/
2727
public class TransitAgency implements Serializable {
28-
/** The default serialVersionUID */
28+
2929
private static final long serialVersionUID = 1L;
3030

3131
/** The name of the transit agency. */

src/main/java/com/google/maps/model/TransitDetails.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
* line, and transit agency.
2727
*/
2828
public class TransitDetails implements Serializable {
29-
/** The default serialVersionUID */
29+
3030
private static final long serialVersionUID = 1L;
3131

3232
/** Information about the arrival stop/station for this part of the trip. */

src/main/java/com/google/maps/model/TransitLine.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
* Details</a> for more detail.
2626
*/
2727
public class TransitLine implements Serializable {
28-
/** The default serialVersionUID */
28+
2929
private static final long serialVersionUID = 1L;
3030

3131
/** The full name of this transit line. E.g. {@code "7 Avenue Express"}. */

src/main/java/com/google/maps/model/Vehicle.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
* details</a> for more detail.
2626
*/
2727
public class Vehicle implements Serializable {
28-
/** The default serialVersionUID */
28+
2929
private static final long serialVersionUID = 1L;
3030

3131
/** The name of the vehicle on this line. E.g. {@code "Subway"}. */

src/main/java/com/google/maps/model/WifiAccessPoint.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
* WiFi Access Point Objects</a> for more detail.
2929
*/
3030
public class WifiAccessPoint implements Serializable {
31-
/** The default serialVersionUID */
31+
3232
private static final long serialVersionUID = 1L;
3333

3434
public WifiAccessPoint() {}

0 commit comments

Comments
 (0)