Stefan Tilkov's Random Stuff

The Daily WTF

A quick pointer to The Daily WTF, which is good for a laugh every day — take this piece of excellent code as an example:

    public class ObjectWrapper
    {
            private Object object;
            public ObjectWrapper(Object object)
            {
                    this.object = object;
            }
            public Object getObject()
            {
                    return object;
            }
    }

Comments