Skip to content

Commit

Permalink
Compatible compilation with java 8
Browse files Browse the repository at this point in the history
  • Loading branch information
sleipnir committed Jun 17, 2022
1 parent 491b31c commit 8d3764f
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>io.eigr</groupId>
<artifactId>spawn-springboot-sdk</artifactId>
<version>0.1.7</version>
<version>0.1.8</version>
<packaging>pom</packaging>
<name>spawn-springboot-sdk</name>
<url>https://eigr.io</url>
Expand Down
6 changes: 3 additions & 3 deletions spawn-springboot-examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>io.eigr</groupId>
<artifactId>spawn-springboot-examples</artifactId>
<version>0.1.7</version>
<version>0.1.8</version>
<name>spawn-springboot-examples</name>
<url>http://www.example.com</url>

Expand All @@ -17,7 +17,7 @@
<parent>
<groupId>io.eigr</groupId>
<artifactId>spawn-springboot-sdk</artifactId>
<version>0.1.7</version>
<version>0.1.8</version>
</parent>

<dependencyManagement>
Expand All @@ -43,7 +43,7 @@
<dependency>
<groupId>io.eigr</groupId>
<artifactId>spawn-springboot-starter</artifactId>
<version>0.1.7</version>
<version>0.1.8</version>
</dependency>

<dependency>
Expand Down
4 changes: 2 additions & 2 deletions spawn-springboot-starter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
<modelVersion>4.0.0</modelVersion>
<groupId>io.eigr</groupId>
<artifactId>spawn-springboot-starter</artifactId>
<version>0.1.7</version>
<version>0.1.8</version>
<name>spawn-springboot-starter</name>
<url>https://eigr.io</url>

<parent>
<groupId>io.eigr</groupId>
<artifactId>spawn-springboot-sdk</artifactId>
<version>0.1.7</version>
<version>0.1.8</version>
</parent>

<properties>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
import org.springframework.core.type.filter.AnnotationTypeFilter;

import java.lang.annotation.Annotation;
import java.lang.reflect.InaccessibleObjectException;
import java.lang.reflect.Method;
import java.time.Duration;
import java.time.Instant;
Expand Down Expand Up @@ -94,7 +93,7 @@ private List<Entity> getEntities() {
Entity.EntityMethod command = new Entity.EntityMethod(commandName, method, inputType, outputType);

commands.put(commandName, command);
} catch (InaccessibleObjectException | SecurityException e) {
} catch (SecurityException e) {
log.error("Failure on load Actor Command", e);
}
}
Expand Down

0 comments on commit 8d3764f

Please sign in to comment.