Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.framework.core.message/src/org/eclipse/osee/framework/core/message/AttributeTypeCacheUpdateResponse.java')
-rw-r--r--plugins/org.eclipse.osee.framework.core.message/src/org/eclipse/osee/framework/core/message/AttributeTypeCacheUpdateResponse.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/org.eclipse.osee.framework.core.message/src/org/eclipse/osee/framework/core/message/AttributeTypeCacheUpdateResponse.java b/plugins/org.eclipse.osee.framework.core.message/src/org/eclipse/osee/framework/core/message/AttributeTypeCacheUpdateResponse.java
index 58c30adf2c1..ec608d0fc48 100644
--- a/plugins/org.eclipse.osee.framework.core.message/src/org/eclipse/osee/framework/core/message/AttributeTypeCacheUpdateResponse.java
+++ b/plugins/org.eclipse.osee.framework.core.message/src/org/eclipse/osee/framework/core/message/AttributeTypeCacheUpdateResponse.java
@@ -20,9 +20,9 @@ import org.eclipse.osee.framework.core.model.type.AttributeType;
public class AttributeTypeCacheUpdateResponse {
private final List<AttributeType> rows;
- private final Map<Integer, Integer> attrToEnum;
+ private final Map<Long, Long> attrToEnum;
- public AttributeTypeCacheUpdateResponse(List<AttributeType> rows, Map<Integer, Integer> attrToEnum) {
+ public AttributeTypeCacheUpdateResponse(List<AttributeType> rows, Map<Long, Long> attrToEnum) {
this.rows = rows;
this.attrToEnum = attrToEnum;
}
@@ -31,7 +31,7 @@ public class AttributeTypeCacheUpdateResponse {
return rows;
}
- public Map<Integer, Integer> getAttrToEnums() {
+ public Map<Long, Long> getAttrToEnums() {
return attrToEnum;
}

Back to the top