Community
Participate
Working Groups
Non-externalized string literal >> it should be followed by //$NON-NLS-<n>$ Warnings reported by FindBugs: * Method org.eclipse.orion.server.core.resources.UniversalUniqueIdentifier.toStringAsBytes() concatenates strings using + in a loop >> Better performance can be obtained by using a StringBuffer (or StringBuilder in Java 1.5) explicitly. * org.eclipse.orion.server.core.resources.UniversalUniqueIdentifier.computeNodeAddress() invokes inefficient new String() constructor >> Use the empty string constant directly * Method org.eclipse.orion.server.core.resources.UniversalUniqueIdentifier.nextClockSequence() uses the nextDouble method of Random to generate a random integer >> Using nextInt is more efficient
Fixed with http://git.eclipse.org/c/orion/org.eclipse.orion.server.git/commit/?id=afb405d6bc478ab40ec14f262a0b73928c1c1b6d.