Merge "Omaha #5061 Fix NPE in WeatherGridSlice.equals()" into omaha_16.2.1
Former-commit-id: 9265c4234dd134853b029c74ec316061f232445a
This commit is contained in:
commit
5a9f37cd3b
1 changed files with 3 additions and 0 deletions
|
@ -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())
|
||||
|
|
Loading…
Add table
Reference in a new issue