Jan 172007
Fun things to find in your code
Uncategorized
Add comments
An Http utility class with a getGetMethod method.
No Responses to “Fun things to find in your code”
Sorry, the comment form is closed at this time.

There is a GetGetMethod in .Net’s PropertyInfo reflection class, so you’re not the only one;)
Love the stutter. It’s “Deja vu” code. Imagine bringing yourself to implement this one:
package org.jboss.test.jmx.compliance.notcompliant.support; public interface InterfaceProblemsMBean extends InterfaceProblemsSuperMBean { void setSet(boolean something); Boolean getGet(); Boolean isIs(); }On a tangent of similar vein, I’ve seen plenty of this lately – it’s “No $#!+, Sherlock” code:
public class Something extends Object { // entertain JaBOL here }Josh Graham