Skip to content

Commit 973c08d

Browse files
authored
fix: fixing lint issue (datahub-project#2861)
1 parent 95b73c4 commit 973c08d

File tree

1 file changed

+1
-1
lines changed
  • datahub-graphql-core/src/main/java/com/linkedin/datahub/graphql/types/aspect

1 file changed

+1
-1
lines changed

datahub-graphql-core/src/main/java/com/linkedin/datahub/graphql/types/aspect/AspectType.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public List<DataFetcherResult<Aspect>> batchLoad(@Nonnull List<VersionedAspectKe
3535
if (e instanceof RestLiResponseException) {
3636
// if no aspect is found, restli will return a 404 rather than null
3737
// https://linkedin.github.io/rest.li/user_guide/restli_server#returning-nulls
38-
if(((RestLiResponseException) e).getStatus() == 404) {
38+
if (((RestLiResponseException) e).getStatus() == 404) {
3939
return DataFetcherResult.<Aspect>newResult().data(null).build();
4040
}
4141
}

0 commit comments

Comments
 (0)