Toggle navigation
Home
java.util.Date to java.lang.Long
No. of Instances - 95
No. of Commits - 14
No. of Projects - {'bigbluebutton', 'sonarqube', 'wildfly', 'flink'}
Hierarchy/Composition: SIBLING
Primitive Info: -
NameSpace: Jdk -> Jdk
Mapping:
Add or Remove Method invocation
time
to
date.getTime()
time
to
date.getTime()
new DefaultIssueComment().setMarkdownText(changeData).setKey(kee).setCreatedAt(createdAt).setUpdatedAt(updatedAt).setUserLogin(userLogin).setIssueKey(issueKey)
to
new DefaultIssueComment().setMarkdownText(changeData).setKey(kee).setCreatedAt(new Date(createdAt)).setUpdatedAt(updatedAt == null ? null : new Date(updatedAt)).setUserLogin(userLogin).setIssueKey(issueKey)
FieldDiffs.parse(changeData).setUserLogin(userLogin).setCreationDate(issueChangeCreationDate != null ? issueChangeCreationDate : createdAt)
to
FieldDiffs.parse(changeData).setUserLogin(userLogin).setCreationDate(issueChangeCreationDate != null ? new Date(issueChangeCreationDate) : new Date(createdAt))
new DefaultIssueComment().setMarkdownText(changeData).setKey(kee).setCreatedAt(createdAt).setUpdatedAt(updatedAt).setUserLogin(userLogin).setIssueKey(issueKey)
to
new DefaultIssueComment().setMarkdownText(changeData).setKey(kee).setCreatedAt(new Date(createdAt)).setUpdatedAt(updatedAt == null ? null : new Date(updatedAt)).setUserLogin(userLogin).setIssueKey(issueKey)
issueCreationDate
to
longToDate(issueCreationDate)
issueUpdateDate
to
longToDate(issueUpdateDate)
issueCloseDate
to
longToDate(issueCloseDate)
Rename Variable
specificStartupDate
to
startupTimestamp
specificStartupDate
to
startupTimestamp
d
to
date
d
to
date
d
to
date
d
to
date
d
to
date
d
to
date
d
to
date
d
to
date
d
to
date
d
to
date
Other
issueCreationDate
to
issueCreationDate
issueUpdateDate
to
issueUpdateDate
issueCloseDate
to
issueCloseDate
creationDate
to
creationDate
measureDate
to
measureDate
date
to
date
Wrap or Un-wrap
setLong
to
setLong
add
to
add
add
to
add
Cascading Type Change (Different)
ConcurrentHashMap<String,Date>
to
ConcurrentHashMap<String,Long>
Rename Method invocation
getTime
to
longValue