Skip to content

Commit

Permalink
Fixing method name and updating version (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
edmocosta authored Jun 25, 2020
1 parent 09caca1 commit 7076e07
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.evcode.queryfy</groupId>
<artifactId>queryfy-root</artifactId>
<version>1.2.1-SNAPSHOT</version>
<version>1.2.2-SNAPSHOT</version>

<modules>
<module>queryfy-core</module>
Expand Down
2 changes: 1 addition & 1 deletion queryfy-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<artifactId>queryfy-root</artifactId>
<groupId>org.evcode.queryfy</groupId>
<version>1.2.1-SNAPSHOT</version>
<version>1.2.2-SNAPSHOT</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion queryfy-mongodb/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<artifactId>queryfy-root</artifactId>
<groupId>org.evcode.queryfy</groupId>
<version>1.2.1-SNAPSHOT</version>
<version>1.2.2-SNAPSHOT</version>
</parent>

<properties>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@ public MongodbEvaluationResult parse(String expression, MongodbContext context,
return evaluationResult;
}

public <T> FindIterable<T> parseAndfind(MongoCollection<T> collection, String expression, MongodbContext context) {
return parseAndfind(collection, expression, context, ParserConfig.DEFAULT);
public <T> FindIterable<T> parseAndFind(MongoCollection<T> collection, String expression, MongodbContext context) {
return parseAndFind(collection, expression, context, ParserConfig.DEFAULT);
}

public <T> FindIterable<T> parseAndfind(MongoCollection<T> collection, String expression, MongodbContext context, ParserConfig config) {
public <T> FindIterable<T> parseAndFind(MongoCollection<T> collection, String expression, MongodbContext context, ParserConfig config) {
FindIterable<T> query = collection.find();
return parseAndApply(query, expression, context, config);
}
Expand Down
2 changes: 1 addition & 1 deletion queryfy-querydsl/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<artifactId>queryfy-root</artifactId>
<groupId>org.evcode.queryfy</groupId>
<version>1.2.1-SNAPSHOT</version>
<version>1.2.2-SNAPSHOT</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion queryfy-querydsl/queryfy-querydsl-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>queryfy-querydsl</artifactId>
<groupId>org.evcode.queryfy</groupId>
<version>1.2.1-SNAPSHOT</version>
<version>1.2.2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion queryfy-querydsl/queryfy-querydsl-jpa/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>queryfy-querydsl</artifactId>
<groupId>org.evcode.queryfy</groupId>
<version>1.2.1-SNAPSHOT</version>
<version>1.2.2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down

0 comments on commit 7076e07

Please sign in to comment.