Toggle navigation
Home
java.util.List to java.util.Deque
No. of Instances - 5
No. of Commits - 4
No. of Projects - {'optaplanner', 'neo4j', 'infinispan', 'keycloak'}
Hierarchy/Composition: SIBLING
Primitive Info: -
NameSpace: Jdk -> Jdk
Mapping:
Cascading Type Change (Different)
ArrayList<>
to
ArrayDeque<>
Add or Remove Method invocation
contextEntries.remove(0)
to
contextEntries.poll()
freeIds.remove(0)
to
freeIds.removeFirst()
readFromDisk.remove(0)
to
readFromDisk.removeFirst()
readFromDisk.remove(0)
to
readFromDisk.removeFirst()
Rename Variable
tabuSequenceList
to
tabuSequenceDeque
tabuSequenceList
to
tabuSequenceDeque
tabuSequenceList
to
tabuSequenceDeque
tabuSequenceList
to
tabuSequenceDeque
tabuSequenceList
to
tabuSequenceDeque
Rename Method invocation
add
to
addLast