aboutsummaryrefslogtreecommitdiff
path: root/java/core/src/main/java/com/google/protobuf/TextFormatParseLocation.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/core/src/main/java/com/google/protobuf/TextFormatParseLocation.java')
-rw-r--r--java/core/src/main/java/com/google/protobuf/TextFormatParseLocation.java7
1 files changed, 2 insertions, 5 deletions
diff --git a/java/core/src/main/java/com/google/protobuf/TextFormatParseLocation.java b/java/core/src/main/java/com/google/protobuf/TextFormatParseLocation.java
index cce286e1..eebfb1b5 100644
--- a/java/core/src/main/java/com/google/protobuf/TextFormatParseLocation.java
+++ b/java/core/src/main/java/com/google/protobuf/TextFormatParseLocation.java
@@ -39,9 +39,7 @@ import java.util.Arrays;
*/
public final class TextFormatParseLocation {
- /**
- * The empty location.
- */
+ /** The empty location. */
public static final TextFormatParseLocation EMPTY = new TextFormatParseLocation(-1, -1);
/**
@@ -92,8 +90,7 @@ public final class TextFormatParseLocation {
return false;
}
TextFormatParseLocation that = (TextFormatParseLocation) o;
- return (this.line == that.getLine())
- && (this.column == that.getColumn());
+ return (this.line == that.getLine()) && (this.column == that.getColumn());
}
@Override