Skip to content

Commit

Permalink
Fix ForgeNotifications.messageFrom()
Browse files Browse the repository at this point in the history
  • Loading branch information
adam-wyluda committed Jun 11, 2014
1 parent 141334f commit bae17b0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ private static String messageFrom(Result result)

if (result instanceof Failed)
{
return SUCCESS_MESSAGE;
return FAILURE_MESSAGE;
}

return FAILURE_MESSAGE;
return SUCCESS_MESSAGE;
}

private static MessageType messageTypeOf(Result result)
Expand Down

0 comments on commit bae17b0

Please sign in to comment.