Skip to content

Commit

Permalink
remove the duplicate superclass of TagRouter and ConditionRouter (apa…
Browse files Browse the repository at this point in the history
…che#2885)

Remove the class ConditionRouter and TagRouter implement duplicate superclass Comparable
  • Loading branch information
lixiaojiee authored and CrazyHZM committed Dec 6, 2018
1 parent 3b8508a commit 5a63719
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
* ConditionRouter
*
*/
public class ConditionRouter implements Router, Comparable<Router> {
public class ConditionRouter implements Router {

private static final Logger logger = LoggerFactory.getLogger(ConditionRouter.class);
private static Pattern ROUTE_PATTERN = Pattern.compile("([&!=,]*)\\s*([^&!=,\\s]+)");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
/**
* TagRouter
*/
public class TagRouter implements Router, Comparable<Router> {
public class TagRouter implements Router {

private static final Logger logger = LoggerFactory.getLogger(TagRouter.class);

Expand Down

0 comments on commit 5a63719

Please sign in to comment.