: Exactly how didn't it work? : : There's a test in the DoubleMetaphoneFilterFactoryTest that tests with : and without inject. Is the test not testing what I thought it was?
Boolean.getBoolean(String) doesn't do what 90% of the people in the world would expect based on the method signature. from the javadocs... > getBoolean(String name) > Returns true if and only if the system property named by the > argument exists and is equal to the string "true". ...it's one of the most porrly named methods in java in my opinion (it should have been in the System class) -Hoss
