Skip to content

Commit

Permalink
LPD-39725 Sort
Browse files Browse the repository at this point in the history
  • Loading branch information
brianchandotcom committed Nov 12, 2024
1 parent 4eeac83 commit f7acce5
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,12 +68,12 @@ public static SharingEntryAction parseFromActionId(String actionId) {
if (Objects.equals(ADD_DISCUSSION.getActionId(), actionId)) {
return ADD_DISCUSSION;
}
else if (Objects.equals(UPDATE.getActionId(), actionId)) {
return UPDATE;
}
else if (Objects.equals(DOWNLOAD.getActionId(), actionId)) {
return DOWNLOAD;
}
else if (Objects.equals(UPDATE.getActionId(), actionId)) {
return UPDATE;
}
else if (Objects.equals(VIEW.getActionId(), actionId)) {
return VIEW;
}
Expand Down

0 comments on commit f7acce5

Please sign in to comment.