Merge "Issue #2600 Fix typo in DataStoreCache." into development
Former-commit-id: 860ac1873dffff0ea221bde1f898aa93ad25859f
This commit is contained in:
commit
020c4de47d
1 changed files with 2 additions and 1 deletions
|
@ -84,6 +84,7 @@ import com.raytheon.uf.viz.core.data.BufferSlicer;
|
|||
* Date Ticket# Engineer Description
|
||||
* ------------- -------- ----------- --------------------------
|
||||
* Sep 18, 2013 2309 bsteffen Initial creation
|
||||
* Dec 04, 2013 2600 bsteffen Fix typo in contains.
|
||||
*
|
||||
* </pre>
|
||||
*
|
||||
|
@ -321,7 +322,7 @@ public class DataStoreCache {
|
|||
*/
|
||||
private static boolean contains(Request outer, Request inner) {
|
||||
Type outerType = outer.getType();
|
||||
Type innerType = outer.getType();
|
||||
Type innerType = inner.getType();
|
||||
if (outerType == Type.ALL) {
|
||||
return true;
|
||||
} else if (outerType == Type.SLAB) {
|
||||
|
|
Loading…
Add table
Reference in a new issue