Skip to content

Commit

Permalink
Fix codefactor issues
Browse files Browse the repository at this point in the history
Signed-off-by: jk KPADEY <[email protected]>
  • Loading branch information
mivek committed Nov 28, 2020
1 parent 8e816ab commit 06fa508
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .codeclimate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ checks:
identical-code:
config:
threshold: # language-specific defaults. an override will affect all languag

plugins:
checkstyle:
enabled: false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public static String degreesToDirection(final String degreesStr) {
return Messages.getInstance().getString("Converter.VRB");
}

return Messages.getInstance().getString("Converter." + DIRECTIONS[(int)((degrees+11.5)/22.5)]);
return Messages.getInstance().getString("Converter." + DIRECTIONS[(int) ((degrees + 11.5) / 22.5)]);
}

/**
Expand Down
2 changes: 1 addition & 1 deletion scripts/before_install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ if [[ "$isPRMerged" = true ]] ; then
git config --global user.email "[email protected]"
git config --global user.name "Travis CI"
git add pom.xml
git add **/pom.xml
git add ./**/pom.xml
git commit -m "Bump pom"
git push https://${TRAVIS_GIT_USER}@github.com/mivek/metarParser.git HEAD:master
fi

0 comments on commit 06fa508

Please sign in to comment.