Skip to content

[BUGFIX] Sonarcloud java:S117: Rename this local variable to match th… #202

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

Merged
merged 1 commit into from
Aug 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ public class BirthdayCakeCandlesTestCase {
public List<Integer> candles;
public Integer expected;

public BirthdayCakeCandlesTestCase(List<Integer> _candles, Integer _expected) {
this.candles = _candles;
this.expected = _expected;
public BirthdayCakeCandlesTestCase(List<Integer> candles, Integer expected) {
this.candles = candles;
this.expected = expected;
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ public class CompareTripletsTestCase {
public List<Integer> lb;
public List<Integer> expected;

public CompareTripletsTestCase(List<Integer> _la, List<Integer> _lb, List<Integer> _expected) {
this.la = _la;
this.lb = _lb;
this.expected = _expected;
public CompareTripletsTestCase(List<Integer> la, List<Integer> lb, List<Integer> expected) {
this.la = la;
this.lb = lb;
this.expected = expected;
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ public class DiagonalDifferenceTestCase {
public List<List<Integer>> matrix;
public Integer expected;

public DiagonalDifferenceTestCase(List<List<Integer>> _input, int _expected) {
this.matrix = _input;
this.expected = _expected;
public DiagonalDifferenceTestCase(List<List<Integer>> input, int expected) {
this.matrix = input;
this.expected = expected;
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ public class MiniMaxSumTestCase {
public List<Integer> input;
public String expected;

public MiniMaxSumTestCase(List<Integer> _input, String _expected) {
this.input = _input;
this.expected = _expected;
public MiniMaxSumTestCase(List<Integer> input, String expected) {
this.input = input;
this.expected = expected;
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ public class PlusMinusTestCase {
public List<Integer> input;
public String expected;

public PlusMinusTestCase(List<Integer> _input, String _expected) {
this.input = _input;
this.expected = _expected;
public PlusMinusTestCase(List<Integer> input, String expected) {
this.input = input;
this.expected = expected;
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ public class StaircaseTestCase {
public Integer input;
public String expected;

public StaircaseTestCase(Integer _input, String _expected) {
this.input = _input;
this.expected = _expected;
public StaircaseTestCase(Integer input, String expected) {
this.input = input;
this.expected = expected;
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ public class TimeConversionTestCase {
public String input;
public String expected;

public TimeConversionTestCase(String _input, String _expected) {
this.input = _input;
this.expected = _expected;
public TimeConversionTestCase(String input, String expected) {
this.input = input;
this.expected = expected;
}
}

Expand Down