Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/relation/RelationFilterUtil.java')
-rw-r--r--plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/relation/RelationFilterUtil.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/relation/RelationFilterUtil.java b/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/relation/RelationFilterUtil.java
index b9db3f82a06..5671063b371 100644
--- a/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/relation/RelationFilterUtil.java
+++ b/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/relation/RelationFilterUtil.java
@@ -38,7 +38,7 @@ public class RelationFilterUtil {
return new FirstSideRelatedArtIdMatcher(artifactId, side.isSideA());
}
- public static RelationMatcher createFindFirstRelationLinkIdMatcher(int relLinkId) {
+ public static RelationMatcher createFindFirstRelationLinkIdMatcher(long relLinkId) {
return new FirstRelationLinkIdMatcher(relLinkId);
}
@@ -78,9 +78,9 @@ public class RelationFilterUtil {
}
private static final class FirstRelationLinkIdMatcher implements RelationMatcher {
- private final int relLinkId;
+ private final long relLinkId;
- public FirstRelationLinkIdMatcher(int relLinkId) {
+ public FirstRelationLinkIdMatcher(long relLinkId) {
this.relLinkId = relLinkId;
}

Back to the top