dcd62c2598
Motivation: The method body of fillInStackTrace method of IllegalStateException class in SimpleChannelPool.java is so simple (just return this) that there is no need to be marked as synchronized. Modification: Remove the synchronized flag of fillInStackTrace method. Result: It can improve performance slightly while creating a IllegalStateException instance.