Merge "Omaha #5061 Fix NPE in WeatherGridSlice.equals()" into omaha_16.2.1

Former-commit-id: 9265c4234dd134853b029c74ec316061f232445a
This commit is contained in:
Ron Anderson 2015-11-03 18:07:05 -06:00 committed by Gerrit Code Review
commit 5a9f37cd3b

View file

@ -59,6 +59,7 @@ import com.raytheon.uf.common.time.TimeRange;
* debugger when trying to display the grid
* Oct 29, 2013 2476 njensen Updated getNumpy() and added getKeyList()
* Apr 23, 2015 4259 njensen Updated for new JEP API
* Nov 03, 2015 5061 randerso Fixed null pointer in equals()
*
* </pre>
*
@ -231,6 +232,8 @@ public class WeatherGridSlice extends AbstractGridSlice {
return true;
}
return false;
} else if (rhsGrid == null) {
return false;
}
if ((grid.getXdim() != rhsGrid.getXdim())