The Daily WTF

September 24, 2004

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;
            }
    }

About

This page contains a single entry from Stefan Tilkov's Random Stuff posted on September 24, 2004 8:45 AM. The previous post in this blog was Links, Links and Links. The next post in this blog is Pull-style Code Generation. Many more can be found on the main index page or by looking through the archives.

Comments