Skip to content

Commit

Permalink
Refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
avazirna committed Oct 23, 2024
1 parent de70d71 commit 9e50d74
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/main/java/org/commcare/cases/entity/AsyncEntity.java
Original file line number Diff line number Diff line change
Expand Up @@ -169,15 +169,14 @@ public String getSortField(int i) {
sortData[i] = "<invalid xpath: " + xpe.getMessage() + ">";
}
}
return sortData[i];
}
return sortData[i];
}
return sortData[i];
}
} catch (IOException e) {
Logger.exception("Error while getting sort field", e);
}
return sortData[i];
return null;
}

@Override
Expand Down

0 comments on commit 9e50d74

Please sign in to comment.