Skip to content

Commit bb70453

Browse files
authored
No need for line break
A 100 column limit is fine: https://google.github.io/styleguide/javaguide.html#s4.4-column-limit
1 parent c3cd20a commit bb70453

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

java/com/google/openlocationcode/OpenLocationCode.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,8 +152,7 @@ public double getEastLongitude() {
152152
* @throws IlegalArgumentException when the passed code is not valid.
153153
* @constructor
154154
*/
155-
public OpenLocationCode(String code)
156-
throws IllegalArgumentException {
155+
public OpenLocationCode(String code) throws IllegalArgumentException {
157156
if (!isValidCode(code.toUpperCase())) {
158157
throw new IllegalArgumentException(
159158
"The provided code '" + code + "' is not a valid Open Location Code.");

0 commit comments

Comments
 (0)