Skip to content

Commit

Permalink
Remove redundant default constructor (#2813)
Browse files Browse the repository at this point in the history
  • Loading branch information
altro3 authored Apr 2, 2024
1 parent 08a1d85 commit 9e2d1a2
Show file tree
Hide file tree
Showing 7 changed files with 0 additions and 40 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,6 @@
*/
public class MongoExecutorQueryMethodMatcher implements MethodMatcher {

/**
* Default constructor.
*/
public MongoExecutorQueryMethodMatcher() {
}

@Override
public final int getOrder() {
// should run first and before `MongoExecutorQueryMethodMatcher`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,6 @@ public class MongoRawQueryMethodMatcher implements MethodMatcher {

private static final Pattern VARIABLE_PATTERN = Pattern.compile("([^:]*)((?<![:]):([a-zA-Z]+[a-zA-Z0-9]*))([^:]*)");

/**
* Default constructor.
*/
public MongoRawQueryMethodMatcher() {
}

@Override
public final int getOrder() {
// should run first and before `RawQueryMethodMatcher`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1323,22 +1323,12 @@ public boolean isEmpty() {
* A Criterion used to combine to criterion in a logical AND.
*/
class Conjunction extends Junction {
/**
* Default constructor.
*/
public Conjunction() {
}
}

/**
* A Criterion used to combine to criterion in a logical OR.
*/
class Disjunction extends Junction {
/**
* Default constructor.
*/
public Disjunction() {
}
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,6 @@
*/
public final class ProcedureMethodMatcher implements MethodMatcher {

/**
* Default constructor.
*/
public ProcedureMethodMatcher() {
}

@Override
public int getOrder() {
// should run first
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,12 +63,6 @@ public class RawQueryMethodMatcher implements MethodMatcher {

private static final Pattern VARIABLE_PATTERN = Pattern.compile("([^:\\\\]*)((?<![:]):([a-zA-Z0-9]+))([^:]*)");

/**
* Default constructor.
*/
public RawQueryMethodMatcher() {
}

@Override
public final int getOrder() {
// should run first
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,6 @@ public class BasicTypesProjection {
private Instant dateCreated;
private Instant dateUpdated;

public BasicTypesProjection() {
}

public Long getMyId() {
return myId;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,6 @@ public class TimezoneBasicTypesProjection {

private Time time;

public TimezoneBasicTypesProjection() {
}

public Long getMyId() {
return myId;
}
Expand Down

0 comments on commit 9e2d1a2

Please sign in to comment.