|
StringBuffer sb = new StringBuffer(); |
The javadoc for it says
As of release JDK 5, this class has been supplemented with an equivalent class designed for use by a single thread, StringBuilder. The StringBuilder class should generally be used in preference to this one, as it supports all of the same operations but it is faster, as it performs no synchronization.
zmanim/src/main/java/com/kosherjava/zmanim/util/Zman.java
Line 238 in d24323b
The javadoc for it says