Skip to content

Commit

Permalink
remove kerosene dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
nkomarn committed Nov 28, 2021
1 parent 0469d5c commit 3cc6636
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 9 deletions.
7 changes: 0 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -177,13 +177,6 @@
</exclusion>
</exclusions>
</dependency>
<!-- Kerosene dependecy -->
<dependency>
<groupId>com.firestartermc</groupId>
<artifactId>Kerosene</artifactId>
<version>5.1.3</version>
<scope>provided</scope>
</dependency>
<!-- Tests -->
<dependency>
<groupId>org.junit.jupiter</groupId>
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/me/ryanhamshire/GriefPrevention/DataStore.java
Original file line number Diff line number Diff line change
Expand Up @@ -686,7 +686,7 @@ synchronized void deleteClaim(Claim claim, boolean fireEvent, boolean releasePet
//optionally set any pets free which belong to the claim owner
if (releasePets && claim.ownerID != null && claim.parent == null)
{
claim.performOnChunksAsync(chunk ->
for (Chunk chunk : claim.getChunks())
{
Entity[] entities = chunk.getEntities();
for (Entity entity : entities)
Expand Down Expand Up @@ -717,7 +717,7 @@ synchronized void deleteClaim(Claim claim, boolean fireEvent, boolean releasePet
}
}
}
});
}
}
}

Expand Down

0 comments on commit 3cc6636

Please sign in to comment.