From 695b472f7a1bfd4709f19d14bdd1e567f6159e67 Mon Sep 17 00:00:00 2001 From: Nate Jensen Date: Wed, 13 Aug 2014 13:53:40 -0500 Subject: [PATCH] Omaha #3185 fix setEnvelope() typo Change-Id: I128453b52b3b1ea029022913b09c9abcf659dadf Former-commit-id: e70d5000aa229d990f844262fc3f1c2aa49e8d18 [formerly fdbc233bc8428044db756d9b666125d05cdcd071] [formerly b78f1f4ea76bb7c863bd5fd9adce3fd1f836367c [formerly 8c7d18c03edae9d9ec9a236ba324145c4a085ec3]] Former-commit-id: b78f1f4ea76bb7c863bd5fd9adce3fd1f836367c Former-commit-id: 7c4865706d6a986d789a4492e18e13d4319a2c86 --- .../common_static/base/python/dataaccess/JDataRequest.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/edexOsgi/com.raytheon.uf.edex.dataaccess/utility/common_static/base/python/dataaccess/JDataRequest.py b/edexOsgi/com.raytheon.uf.edex.dataaccess/utility/common_static/base/python/dataaccess/JDataRequest.py index 73cd6d514f..3153de901f 100644 --- a/edexOsgi/com.raytheon.uf.edex.dataaccess/utility/common_static/base/python/dataaccess/JDataRequest.py +++ b/edexOsgi/com.raytheon.uf.edex.dataaccess/utility/common_static/base/python/dataaccess/JDataRequest.py @@ -31,6 +31,7 @@ # Feb 14, 2013 1614 bsteffen Refactor data access framework # to use single request. # Jul 22, 2014 3185 njensen Fix getters to return python objs +# Aug 13, 2014 3185 njensen Fix setEnvelope() typo # # # @@ -71,7 +72,7 @@ class JDataRequest(IDataRequest, JUtil.JavaWrapperClass): from com.vividsolutions.jts.geom import Envelope bounds = env.bounds jenv = Envelope(bounds[0], bounds[2], bounds[1], bounds[3]) - self.jobj.setEnvelope(bounds) + self.jobj.setEnvelope(jenv) def setLocationNames(self, *args): from java.lang import String as JavaString