Skip to content
This repository was archived by the owner on Jan 23, 2025. It is now read-only.

Commit 694f909

Browse files
authored
Merge pull request #272 from appirio-tech/dev
fix challenge group setting
2 parents a65c415 + 6cb4d26 commit 694f909

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/java/main/com/topcoder/direct/services/view/action/contest/launch/SaveDraftContestAction.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1018,7 +1018,7 @@ public boolean evaluate(Object object) {
10181018
ProjectGroup[] allProjectGroups = getContestServiceFacade().getAllProjectGroups(DirectStrutsActionsHelper.getTCSubjectFromSession());
10191019
for (String groupId : groups) {
10201020
for (ProjectGroup projectGroup : allProjectGroups) {
1021-
if (Long.valueOf(projectGroup.getId()).equals(groupId)) {
1021+
if (Long.valueOf(groupId).equals(projectGroup.getId())) {
10221022
groupsList.add(projectGroup);
10231023
}
10241024
}

0 commit comments

Comments
 (0)