File tree 1 file changed +3
-3
lines changed
datahub-graphql-core/src/main/java/com/linkedin/datahub/graphql/types/common/mappers
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
package com .linkedin .datahub .graphql .types .common .mappers ;
2
2
3
3
import com .linkedin .datahub .graphql .QueryContext ;
4
- import com .linkedin .datahub .graphql .generated .TimeStamp ;
4
+ import com .linkedin .datahub .graphql .generated .AuditStamp ;
5
5
import com .linkedin .datahub .graphql .types .mappers .ModelMapper ;
6
6
import javax .annotation .Nonnull ;
7
7
import javax .annotation .Nullable ;
@@ -16,9 +16,9 @@ public static TimeStamp map(
16
16
}
17
17
18
18
@ Override
19
- public TimeStamp apply (
19
+ public AuditStamp apply (
20
20
@ Nullable QueryContext context , @ Nonnull final com .linkedin .common .TimeStamp timestamp ) {
21
- final TimeStamp result = new TimeStamp ();
21
+ final AuditStamp result = new AuditStamp ();
22
22
result .setTime (timestamp .getTime ());
23
23
if (timestamp .hasActor ()) {
24
24
result .setActor (timestamp .getActor ().toString ());
You can’t perform that action at this time.
0 commit comments