* @return Comparison value
*/
public static int compare (final BasicData basicData1, final BasicData basicData2) {
- // Check euqality, then at least first must be given
+ // Check equality, then at least first must be given
if (Objects.equals(basicData1, basicData2)) {
// Both are same
return 0;
* @return Comparison value
*/
public static int compare (final BranchOffice branchOffice1, final BranchOffice branchOffice2) {
- // Check euqality, then at least first must be given
+ // Check equality, then at least first must be given
if (Objects.equals(branchOffice1, branchOffice2)) {
// Both are same
return 0;
* @return Comparison value
*/
public static int compare (final Department department1, final Department department2) {
- // Check euqality, then at least first must be given
+ // Check equality, then at least first must be given
if (Objects.equals(department1, department2)) {
// Both are same
return 0;
* @return Comparison value
*/
public static int compare (final Employable employable1, final Employable employable2) {
- // Check euqality, then at least first must be given
+ // Check equality, then at least first must be given
if (Objects.equals(employable1, employable2)) {
// Both are same
return 0;
* @return Comparison value
*/
public static int compare (final HireableJobPosition jobPosition1, final HireableJobPosition jobPosition2) {
- // Check euqality, then at least first must be given
+ // Check equality, then at least first must be given
if (Objects.equals(jobPosition1, jobPosition2)) {
// Both are same
return 0;