aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/org/traccar/protocol/LaipacProtocolDecoder.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/org/traccar/protocol/LaipacProtocolDecoder.java b/src/org/traccar/protocol/LaipacProtocolDecoder.java
index e7698dc95..16ed6b750 100644
--- a/src/org/traccar/protocol/LaipacProtocolDecoder.java
+++ b/src/org/traccar/protocol/LaipacProtocolDecoder.java
@@ -126,7 +126,8 @@ public class LaipacProtocolDecoder extends BaseProtocolDecoder {
String cellIdString = parser.next();
String countryCodeString = parser.next();
String operatorCodeString = parser.next();
- if (cellNetCodeString != null && cellIdString != null && countryCodeString != null && operatorCodeString != null) {
+ if (cellNetCodeString != null && cellIdString != null &&
+ countryCodeString != null && operatorCodeString != null) {
int cellNetCode = Integer.parseInt(cellNetCodeString, 16);
Long cellId = Long.parseLong(cellIdString, 16);
int countryCode = Integer.parseInt(countryCodeString);