Deprecated API


Contents
Deprecated Classes
com.google.common.util.concurrent.DaemonThreadFactory
          Create a ThreadFactoryBuilder and then use its ThreadFactoryBuilder.setDaemon(boolean) and ThreadFactoryBuilder.setThreadFactory(java.util.concurrent.ThreadFactory) methods. 
com.google.common.util.concurrent.NamingThreadFactory
          Create a ThreadFactoryBuilder and then use its ThreadFactoryBuilder.setNameFormat(java.lang.String) and ThreadFactoryBuilder.setThreadFactory(java.util.concurrent.ThreadFactory) methods. 
 

Deprecated Methods
com.google.common.util.concurrent.MoreExecutors.daemonThreadFactory()
          Create a ThreadFactoryBuilder and then use its ThreadFactoryBuilder.setDaemon(boolean) method. 
com.google.common.util.concurrent.MoreExecutors.daemonThreadFactory(ThreadFactory)
          Create a ThreadFactoryBuilder and then use its ThreadFactoryBuilder.setDaemon(boolean) and ThreadFactoryBuilder.setThreadFactory(java.util.concurrent.ThreadFactory) methods. 
com.google.common.collect.Ordering.from(Ordering)
          no need to use this 
com.google.common.collect.ImmutableSet.of(E[])
          use ImmutableSet.copyOf(Object[]). 
com.google.common.collect.ImmutableList.of(E[])
          use ImmutableList.copyOf(Object[]) 
com.google.common.collect.ImmutableSortedSet.of(E[])
          use ImmutableSortedSet.copyOf(Comparable[]). 
com.google.common.io.ByteArrayDataOutput.writeBytes(String)
          This method is dangerous as it discards the high byte of every character. For UTF-8, use write(s.getBytes(Charsets.UTF_8)).