You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@streampipes.apache.org by mi...@apache.org on 2020/05/16 16:27:46 UTC

[incubator-streampipes-extensions] 01/03: makes method public to be used everywhere

This is an automated email from the ASF dual-hosted git repository.

micklich pushed a commit to branch feature/geodesicCalc
in repository https://gitbox.apache.org/repos/asf/incubator-streampipes-extensions.git

commit e6b44d95b70d968c703cd406ceddd16ccb4d43f4
Author: micklich <fl...@disy.net>
AuthorDate: Sat May 16 18:24:37 2020 +0200

    makes method public to be used everywhere
---
 .../streampipes/processors/geo/jvm/jts/helper/SpGeometryBuilder.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/streampipes-processors-geo-jvm/src/main/java/org/apache/streampipes/processors/geo/jvm/jts/helper/SpGeometryBuilder.java b/streampipes-processors-geo-jvm/src/main/java/org/apache/streampipes/processors/geo/jvm/jts/helper/SpGeometryBuilder.java
index 03e38a5..4463087 100644
--- a/streampipes-processors-geo-jvm/src/main/java/org/apache/streampipes/processors/geo/jvm/jts/helper/SpGeometryBuilder.java
+++ b/streampipes-processors-geo-jvm/src/main/java/org/apache/streampipes/processors/geo/jvm/jts/helper/SpGeometryBuilder.java
@@ -99,7 +99,7 @@ public class SpGeometryBuilder {
    * @param max          max value to check
    * @return true if value is in min max range
    */
-  private static boolean isInWGSCoordinateRange(double valueToCheck, double min, double max){
+  public static boolean isInWGSCoordinateRange(double valueToCheck, double min, double max){
     return valueToCheck > min && valueToCheck < max;
   }