Skip to content
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

Sandbox/action pmd test #5

Open
wants to merge 15 commits into
base: master
Choose a base branch
from
3 changes: 2 additions & 1 deletion .github/workflows/pmd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,5 @@ jobs:
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
reporter: 'github-pr-review'
tool_name: 'pmd_reviewdog'
src_path: ./
tool_name: 'pmd_reviewdog'
9 changes: 8 additions & 1 deletion src/main/java/xyz/monotalk/social/mixcloud/Hot.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,14 @@
*/
public class Hot implements Pathable<MixCloudResult<CloudCast>>, RequesterBuilder {

private String unused = null;
private String unused1 = null;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[pmd_reviewdog] reported by reviewdog 🐶
Avoid unused private fields such as 'unused1'.

private String unused2 = null;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[pmd_reviewdog] reported by reviewdog 🐶
Avoid unused private fields such as 'unused2'.

private String unused3 = null;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[pmd_reviewdog] reported by reviewdog 🐶
Avoid unused private fields such as 'unused3'.

private String unused4 = null;
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[pmd_reviewdog] reported by reviewdog 🐶
Avoid unused private fields such as 'unused4'.

private String unused5 = null;
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[pmd_reviewdog] reported by reviewdog 🐶
Avoid unused private fields such as 'unused5'.

private String unused6 = null;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[pmd_reviewdog] reported by reviewdog 🐶
Avoid unused private fields such as 'unused6'.

private String unused7 = null;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[pmd_reviewdog] reported by reviewdog 🐶
Avoid unused private fields such as 'unused7'.

private String unused8 = null;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[pmd_reviewdog] reported by reviewdog 🐶
Avoid unused private fields such as 'unused8'.

private Pathable pathable = null;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ public class MixCloudResponseHandler<R> implements ResponseHandler<R> {

private Pathable<R> pathable = null;

private String unuse7 = null;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[pmd_reviewdog] reported by reviewdog 🐶
Avoid unused private fields such as 'unuse7'.


/**
* MixCloudResponseHandler
*
Expand Down