Skip to content

Commit

Permalink
Merge pull request #114 from urbancamo/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
urbancamo authored Dec 15, 2024
2 parents 356d699 + 0a8d41f commit 784397f
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 6 deletions.
15 changes: 11 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.3.5</version>
<version>3.3.6</version>
</parent>

<description>
Expand All @@ -22,7 +22,7 @@

<groupId>uk.m0nom</groupId>
<artifactId>adif-processor</artifactId>
<version>1.4.17</version>
<version>1.4.18</version>

<name>ADIF Processor</name>
<url>https://github.com/urbancamo/adif-processor</url>
Expand Down Expand Up @@ -221,8 +221,8 @@
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.30</version>
<scope>compile</scope>
<version>1.18.36</version>
<scope>provided</scope>
</dependency>

<dependency>
Expand Down Expand Up @@ -401,6 +401,13 @@
<configuration>
<source>11</source>
<target>11</target>
<annotationProcessorPaths>
<path>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.36</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
</plugins>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -406,8 +406,8 @@ private void improveAccuracyOfMyLocationIfRequired(Qso qso) {

private void processSig(Qso qso) {
Adif3Record rec = qso.getRecord();
String activityType = rec.getSig().toUpperCase();
String activityLocation = rec.getSigInfo().toUpperCase();
String activityType = rec.getSig() != null ? rec.getSig().toUpperCase(): "";
String activityLocation = rec.getSigInfo() != null ? rec.getSigInfo().toUpperCase() : "";

if (StringUtils.isNotBlank(activityType)) {
// See if it is an activity we support
Expand Down

0 comments on commit 784397f

Please sign in to comment.