-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Reducing redundant code #59
Conversation
Hey! @dhruvil-shah, Thank you |
Hi @dhruvil-shah, thanks for the refactoring suggestion. Please do as @ABHAY0O7 says, just follow the Google Java style conventions. Your PR is good. |
Hey @ABHAY0O7 Which ide you're using because I'm not able to configure checkstyle with VS Code |
Hey! @dhruvil-shah, You didn't need to configure checkstyle it is already configured in the project's pom.xml file.
And in the end, I have a suggestion for you i.e. try to use IntelliJ IDEA ( I use this one ) or Eclipse IDE because these IDEs are specially designed for java based projects and related development. Correct me @cesarsotovalero if I am wrong somewhere. |
Thanks much man @ABHAY0O7 |
You're totally right @ABHAY0O7. Thanks for your very concrete explanation of the setup. As you mentioned, it is very easy configuring Checkstyle in IntelliJ, there's even a very useful plugin for that that allows displaying the style errors in your working file. |
Hey @dhruvil-shah, Thank you |
Hey @dhruvil-shah and @cesarsotovalero, Thank you |
Codecov Report
@@ Coverage Diff @@
## master #59 +/- ##
========================================
Coverage ? 5.38%
Complexity ? 20
========================================
Files ? 26
Lines ? 966
Branches ? 133
========================================
Hits ? 52
Misses ? 902
Partials ? 12
Flags with carried forward coverage won't be shown. Click here to find out more. Continue to review full report at Codecov.
|
Hi @dhruvil-shah, I just fixed the Checkstyle error and merged your changes, see #69. Looking forward to your next contribution. |
In
DepCleanMojo.java
file while printing dependencies on console initial code was repeating same amount of lines so just added a method for it.Also want to know if we could remove
sizeOfDependencies
from the parameters as it is globally accessible by all the methods.Thanks and Regards
Dhruvil Shah