Skip to content

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
yoonhyejin committed Dec 19, 2024
1 parent d922879 commit 5115424
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package com.linkedin.datahub.graphql.types.common.mappers;

import com.linkedin.datahub.graphql.QueryContext;
import com.linkedin.datahub.graphql.generated.TimeStamp; // Note this import - the GraphQL TimeStamp
import com.linkedin.datahub.graphql.generated.TimeStamp;
import com.linkedin.datahub.graphql.types.mappers.ModelMapper;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
Expand All @@ -25,4 +25,4 @@ public TimeStamp apply(
}
return result;
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ private void mapDataProcessProperties(
DataProcessInstanceProperties dataProcessInstanceProperties =
new DataProcessInstanceProperties(dataMap);
dpi.setName(dataProcessInstanceProperties.getName());

com.linkedin.datahub.graphql.generated.DataProcessInstanceProperties properties =
new com.linkedin.datahub.graphql.generated.DataProcessInstanceProperties();
properties.setCreated(TimeStampMapper.map(context, dataProcessInstanceProperties.getCreated()));
Expand Down

0 comments on commit 5115424

Please sign in to comment.