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

Commit df21e11

Browse files
committed
fix compilation issue
1 parent 43b29bf commit df21e11

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/appirio/service/challengefeeder/manager/ChallengeDetailMMFeederManager.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ private static void associateAllSubmissions(List<ChallengeDetailData> challenges
173173
}
174174

175175
userSubmissions.sort((UserSubmissionData usd1, UserSubmissionData usd2) -> {
176-
if (usd1 == null and usd2 == null) {
176+
if (usd1 == null && usd2 == null) {
177177
return 0;
178178
}
179179

0 commit comments

Comments
 (0)