Toggle navigation
Home
java.lang.String to java.lang.CharSequence
No. of Instances - 207
No. of Commits - 31
No. of Projects - {'wildfly', 'speedment', 'redisson', 'tomcat', 'jersey', 'j2objc', 'pentaho-kettle', 'jOOL', 'Chronicle-Map', 'FluentLenium', 'async-http-client', 'brave', 'assertj-core', 'pi4j', 'vert.x', 'FasterXML', 'rest-assured', 'immutables', 'Resteasy'}
Hierarchy/Composition: R_SUPER_T
Primitive Info: -
NameSpace: Jdk -> Jdk
Mapping:
Update Class Instacne Creation
new Integer(id)
to
new Integer(id.toString())
Rename Variable
separator
to
delimiter
separator
to
delimiter
name_
to
name
name_
to
name
name_
to
name
Cascading Type Change (Similar)
String
to
CharSequence
String
to
CharSequence
Add or Remove Method invocation
Collectors.reducing((CharSequence s1,CharSequence s2) -> { if (s1 == null || s2 == null) return ""; int l1=s1.length(); int l2=s2.length(); int l=Math.min(l1,l2); int i; for (i=0; i < l && s1.charAt(l1 - i - 1) == s2.charAt(l2 - i - 1); i++) ; return s1.substring(l1 - i); } )
to
Collectors.reducing((CharSequence s1,CharSequence s2) -> { if (s1 == null || s2 == null) return ""; int l1=s1.length(); int l2=s2.length(); int l=Math.min(l1,l2); int i; for (i=0; i < l && s1.charAt(l1 - i - 1) == s2.charAt(l2 - i - 1); i++) ; return s1.subSequence(l1 - i,l1); } )
s.orElse("")
to
s.map(Objects::toString).orElse("")
Collectors.reducing((CharSequence s1,CharSequence s2) -> { if (s1 == null || s2 == null) return ""; int l=Math.min(s1.length(),s2.length()); int i; for (i=0; i < l && s1.charAt(i) == s2.charAt(i); i++) ; return s1.substring(0,i); } )
to
Collectors.reducing((CharSequence s1,CharSequence s2) -> { if (s1 == null || s2 == null) return ""; int l=Math.min(s1.length(),s2.length()); int i; for (i=0; i < l && s1.charAt(i) == s2.charAt(i); i++) ; return s1.subSequence(0,i); } )
s.orElse("")
to
s.map(Objects::toString).orElse("")
path
to
path.toString()
path
to
path.toString()
path
to
path.toString()
path
to
path.toString()
path
to
path.toString()
path
to
path.toString()
path
to
path.toString()
path
to
path.toString()
path
to
path.toString()
path
to
path.toString()
path
to
path.toString()
path
to
path.toString()
path
to
path.toString()
path
to
path.toString()
header.substring(start,index++)
to
header.subSequence(start,index++)
header.substring(start,index)
to
header.subSequence(start,index)
header.substring(index)
to
header.subSequence(index,header.length())
header.substring(start,index++)
to
header.subSequence(start,index++)
header.substring(start,index)
to
header.subSequence(start,index)
header.substring(start,index - 1)
to
header.subSequence(start,index - 1)
header.substring(start,index)
to
header.subSequence(start,index)
header.substring(index)
to
header.subSequence(index,header.length())
lenientLowerHexToUnsignedLong(b3,endIndex,endIndex)
to
tryParse16HexCharacters(b3,pos,endIndex)
lenientLowerHexToUnsignedLong(b3,endIndex,endIndex)
to
tryParse16HexCharacters(b3,pos,endIndex)
lenientLowerHexToUnsignedLong(b3,endIndex,endIndex)
to
tryParse16HexCharacters(b3,pos,endIndex)
lenientLowerHexToUnsignedLong(b3,pos,pos + 16)
to
tryParse16HexCharacters(b3,pos,endIndex)
comparisonStrategy.stringStartsWith(string.substring(i),toFind)
to
comparisonStrategy.stringStartsWith(string.substring(i),toFind.toString())
toString
to
collectHeader
text.toString().replaceAll("\\r?\\n",nltab)
to
text.toString().replaceAll("\\r?\\n",nltab.toString())
expiredTopic.getPatternNames().contains(pattern)
to
expiredTopic.getPatternNames().contains(pattern.toString())
deletedTopic.getPatternNames().contains(pattern)
to
deletedTopic.getPatternNames().contains(pattern.toString())
createdTopic.getPatternNames().contains(pattern)
to
createdTopic.getPatternNames().contains(pattern.toString())
channel
to
channel.toString()
channel
to
channel.toString()
channel.equals(name)
to
channel.toString().equals(name)
name.equals(pattern)
to
name.equals(pattern.toString())
name.equals(channel)
to
name.equals(channel.toString())
name.equals(pattern)
to
name.equals(pattern.toString())
channel
to
channel.toString()
channel
to
channel.toString()
channel.equals(name)
to
channel.toString().equals(name)
reencodedSessionId
to
reencodedSessionId.toString()
sessionId
to
sessionId.toString()
Other
16
to
endIndex
0
to
endIndex
32
to
endIndex
16
to
endIndex
16
to
endIndex
0
to
endIndex
Rename Method invocation
replaceWith
to
set