Skip to content

Commit

Permalink
Merge pull request #45 from Terasology/chore/qaplug-findings
Browse files Browse the repository at this point in the history
refactor: address IntelliJ QAPlug plugin findings
  • Loading branch information
soloturn authored Dec 10, 2023
2 parents e9239e9 + 3ea9ab9 commit 0bf31a3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,7 @@ public CoreBiomeColors() {

@Override
public Color apply(Biome biome) {
Color color = biomeColors.get(biome);
return color;
return biomeColors.get(biome);
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ public CoreFloraColors() {

@Override
public Color apply(FloraType biome) {
Color color = floraColors.get(biome);
return color;
return floraColors.get(biome);
}
}

0 comments on commit 0bf31a3

Please sign in to comment.