Merge "Issue #2600 Fix typo in DataStoreCache." into development

Former-commit-id: 860ac1873dffff0ea221bde1f898aa93ad25859f
This commit is contained in:
Nate Jensen 2013-12-04 11:54:11 -06:00 committed by Gerrit Code Review
commit 020c4de47d

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