Toggle navigation
Home
java.util.concurrent.Callable to org.sonar.home.cache.PersistentCacheLoader
No. of Instances - 4
No. of Commits - 1
No. of Projects - {'sonarqube'}
Hierarchy/Composition: -
Primitive Info: -
NameSpace: Jdk -> Internal
Mapping:
Rename Method invocation
call
to
get
call
to
get
Cascading Type Change (Similar)
Callable<byte[]>
to
PersistentCacheLoader<byte[]>
Cascading Type Change (Different)
Exception
to
IOException
Add or Remove Method invocation
get(obj,new PersistentCacheLoader<byte[]>(){ @Override public byte[] call() throws IOException { String s=valueLoader.call(); if (s != null) { return s.getBytes(ENCODING); } return null; } } )
to
get(obj,new PersistentCacheLoader<byte[]>(){ @Override public byte[] get() throws IOException { String s=valueLoader.get(); if (s != null) { return s.getBytes(ENCODING); } return null; } } )
when(c.call())
to
when(c.get())