Skip to content

Commit

Permalink
LPS-143347 Wordsmith
Browse files Browse the repository at this point in the history
  • Loading branch information
brianchandotcom committed Feb 3, 2022
1 parent 350284c commit 65c84c5
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ public ObjectField deleteObjectField(ObjectField objectField)

if (Validator.isNotNull(objectField.getRelationshipType())) {
throw new ObjectFieldRelationshipTypeException(
"Object field cannot be deleted because it is of " +
"Object field cannot be deleted because it has a " +
"relationship type");
}

Expand All @@ -157,7 +157,7 @@ public ObjectField deleteRelationshipTypeObjectField(long objectFieldId)

if (Validator.isNull(objectField.getRelationshipType())) {
throw new ObjectFieldRelationshipTypeException(
"Object field cannot be deleted because it is not of " +
"Object field cannot be deleted because it does not have a " +
"relationship type");
}

Expand Down

0 comments on commit 65c84c5

Please sign in to comment.