Skip to content

Commit

Permalink
Merge pull request #91 from semagrow/fix-selector-distance
Browse files Browse the repository at this point in the history
Fix bug in the comparison in selector distance
  • Loading branch information
stasinos committed Oct 8, 2021
2 parents 009b0df + b730abe commit 76d3f47
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion assembly/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.semagrow</groupId>
<artifactId>semagrow</artifactId>
<version>2.2.0</version>
<version>2.2.1</version>
</parent>

<artifactId>semagrow-assembly</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion commons/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.semagrow</groupId>
<artifactId>semagrow</artifactId>
<version>2.2.0</version>
<version>2.2.1</version>
</parent>

<artifactId>semagrow-commons</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion core-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.semagrow</groupId>
<artifactId>semagrow</artifactId>
<version>2.2.0</version>
<version>2.2.1</version>
</parent>

<artifactId>semagrow-core-api</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.semagrow</groupId>
<artifactId>semagrow</artifactId>
<version>2.2.0</version>
<version>2.2.1</version>
</parent>
<artifactId>semagrow-core</artifactId>
<name>SemaGrow Core</name>
Expand Down
2 changes: 1 addition & 1 deletion geospatial/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<artifactId>semagrow</artifactId>
<groupId>org.semagrow</groupId>
<version>2.2.0</version>
<version>2.2.1</version>
</parent>


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ private static boolean emptyResultSetInternal(ValueExpr valueExpr, Map<String, L
if (arg3 instanceof ValueConstant) {
Value unit = ((ValueConstant) arg3).getValue();

if (unit.stringValue().equals(UOM.metre)) {
if (unit.stringValue().equals(UOM.metre.stringValue())) {
distance = approxMetersToDegrees(distance);
}

Expand Down
2 changes: 1 addition & 1 deletion http-endpoint/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.semagrow</groupId>
<artifactId>semagrow</artifactId>
<version>2.2.0</version>
<version>2.2.1</version>
</parent>

<artifactId>semagrow-http-endpoint</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion monitor/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<artifactId>semagrow</artifactId>
<groupId>org.semagrow</groupId>
<version>2.2.0</version>
<version>2.2.1</version>
</parent>

<artifactId>semagrow-monitor</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>org.semagrow</groupId>
<artifactId>semagrow</artifactId>
<version>2.2.0</version>
<version>2.2.1</version>
<packaging>pom</packaging>
<name>SemaGrow</name>
<url>http://semagrow.github.io</url>
Expand Down
2 changes: 1 addition & 1 deletion rdf4j/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<artifactId>semagrow</artifactId>
<groupId>org.semagrow</groupId>
<version>2.2.0</version>
<version>2.2.1</version>
</parent>

<artifactId>semagrow-rdf4j</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion sparql/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.semagrow</groupId>
<artifactId>semagrow</artifactId>
<version>2.2.0</version>
<version>2.2.1</version>
</parent>
<artifactId>semagrow-connector-sparql</artifactId>
<name>SemaGrow SPARQL Connector</name>
Expand Down
2 changes: 1 addition & 1 deletion webgui/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.semagrow</groupId>
<artifactId>semagrow</artifactId>
<version>2.2.0</version>
<version>2.2.1</version>
</parent>

<artifactId>semagrow-webgui</artifactId>
Expand Down

0 comments on commit 76d3f47

Please sign in to comment.