Skip to content

Commit

Permalink
Fixing compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
fernandonogueira committed May 30, 2017
1 parent 4a8c928 commit 5847d87
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

<groupId>com.github.OkraScheduler</groupId>
<artifactId>OkraSync</artifactId>
<version>1.1.2</version>
<version>1.1.3</version>

<properties>
<java.version>1.8</java.version>
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/okra/OkraBaseContainerTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public void setUp() throws UnknownHostException {
mongoContainer.getContainerIpAddress(),
mongoContainer.getMappedPort(27017)
);
okraSync = new OkraSyncBuilder<DefaultOkraItem>()
okraSync = (OkraSync<DefaultOkraItem>) new OkraSyncBuilder<DefaultOkraItem>()
.withMongo(getDefaultMongo())
.withDatabase("okraSimpleTests")
.withCollection("okraSync")
Expand Down

0 comments on commit 5847d87

Please sign in to comment.