Skip to content

Commit

Permalink
#389 Support More Complex CSS Selectors
Browse files Browse the repository at this point in the history
Reduce visibility of classes.
  • Loading branch information
briemla committed Jan 21, 2020
1 parent c84c724 commit 8f466cf
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/main/java/de/retest/web/selenium/css/EmptySelector.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@

import de.retest.recheck.ui.descriptors.Element;

public class EmptySelector implements Selector {
class EmptySelector implements Selector {

private final String selector;

public EmptySelector( final String selector ) {
EmptySelector( final String selector ) {
this.selector = selector;
}

Expand Down
4 changes: 2 additions & 2 deletions src/main/java/de/retest/web/selenium/css/RegexSelector.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@

import de.retest.recheck.ui.descriptors.Element;

public class RegexSelector implements Selector {
class RegexSelector implements Selector {

private final Matcher classMatcher;
private final Function<String, Predicate<Element>> factory;

public RegexSelector( final Matcher classMatcher, final Function<String, Predicate<Element>> factory ) {
RegexSelector( final Matcher classMatcher, final Function<String, Predicate<Element>> factory ) {
this.classMatcher = classMatcher;
this.factory = factory;
}
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/de/retest/web/selenium/css/Transformer.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

import de.retest.recheck.ui.descriptors.Element;

public class Transformer {
class Transformer {

private final Pattern cssPattern;
private final Function<String, Predicate<Element>> factory;
Expand Down

0 comments on commit 8f466cf

Please sign in to comment.