Issue #2600 Fix typo in DataStoreCache.

Former-commit-id: ff5267fc07 [formerly 80a98a3d7e] [formerly 3c8962fb96] [formerly ff5267fc07 [formerly 80a98a3d7e] [formerly 3c8962fb96] [formerly 0b4eaac59e [formerly 3c8962fb96 [formerly 5f20550b08b2299c7bb7a4769b13c4c9e50c90dd]]]]
Former-commit-id: 0b4eaac59e
Former-commit-id: 76c989a47d [formerly d6640590e9] [formerly a01200be83dcf0244764eae09c7c177e81901fa3 [formerly d1b4fdd9c8]]
Former-commit-id: 41865ec7e304f1812b2137c264a6494932b7e22b [formerly cb6d8f6070]
Former-commit-id: ea09aaff72
This commit is contained in:
Ben Steffensmeier 2013-12-04 11:22:17 -06:00
parent 3094682113
commit e359c36fd8

View file

@ -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) {