Fun things to find in your code

An Http utility class with a getGetMethod method.

This entry was posted in Uncategorized. Bookmark the permalink.

2 Responses to Fun things to find in your code

  1. anonymous's avatar anonymous says:

    There is a GetGetMethod in .Net’s PropertyInfo reflection class, so you’re not the only one;)

  2. ext_28844's avatar ext_28844 says:

    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

Leave a reply to ext_28844 Cancel reply