Omaha #5061 Fix NPE in WeatherGridSlice.equals()
Change-Id: I3c0c4223306ef1cce46d0f0cdcbd912247e324d5 Former-commit-id: 545c30bbae1cc63acf1ac515e6d490a38ee2c926
This commit is contained in:
parent
14da9debb5
commit
a1f3f9cd3f
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