Click here to Skip to main content
15,889,767 members

The Weird and The Wonderful

   

The Weird and The Wonderful forum is a place to post Coding Horrors, Worst Practices, and the occasional flash of brilliance.

We all come across code that simply boggles the mind. Lazy kludges, embarrassing mistakes, horrid workarounds and developers just not quite getting it. And then somedays we come across - or write - the truly sublime.

Post your Best, your worst, and your most interesting. But please - no programming questions . This forum is purely for amusement and discussions on code snippets. All actual programming questions will be removed.

 
GeneralRe: False selection... Pin
CDP180211-Oct-10 1:48
CDP180211-Oct-10 1:48 
GeneralRe: False selection... Pin
lordofawesome11-Oct-10 2:11
lordofawesome11-Oct-10 2:11 
GeneralRe: False selection... PinPopular
CDP180211-Oct-10 2:18
CDP180211-Oct-10 2:18 
GeneralRe: False selection... Pin
lordofawesome11-Oct-10 2:22
lordofawesome11-Oct-10 2:22 
GeneralRe: False selection... Pin
CDP180211-Oct-10 2:32
CDP180211-Oct-10 2:32 
GeneralRe: False selection... Pin
lordofawesome11-Oct-10 2:41
lordofawesome11-Oct-10 2:41 
GeneralRe: False selection... Pin
CDP180211-Oct-10 2:46
CDP180211-Oct-10 2:46 
GeneralRe: False selection... Pin
lordofawesome11-Oct-10 3:02
lordofawesome11-Oct-10 3:02 
I'd probably go for this approach

/**
        Determines if two display modes "match". Two display
        modes match if they have the same resolution, bit depth,
        and refresh rate. The bit depth is ignored if one of the
        modes has a bit depth of DisplayMode.BIT_DEPTH_MULTI.
        Likewise, the refresh rate is ignored if one of the
        modes has a refresh rate of
        DisplayMode.REFRESH_RATE_UNKNOWN.
    */
    public boolean displayModesMatch(DisplayMode mode1,
        DisplayMode mode2)
    {
	boolean isEqualDimention = (mode1.getWidth() == mode2.getWidth() && mode1.getHeight() == mode2.getHeight());
	boolean isEqualDepth = (mode1.getBitDepth() == mode2.getBitDepth());
	boolean isEqualRefreshRate = (mode1.getRefreshRate() == mode2.getRefreshRate());
	
	return (isEqualDimention && isEqualDepth && isEqualRefreshRate);
    }


I think this is much more readable and much simpler.
GeneralRe: False selection... Pin
CDP180211-Oct-10 3:10
CDP180211-Oct-10 3:10 
GeneralRe: False selection... Pin
lordofawesome11-Oct-10 3:37
lordofawesome11-Oct-10 3:37 
GeneralRe: False selection... Pin
CDP180211-Oct-10 4:01
CDP180211-Oct-10 4:01 
GeneralRe: False selection... Pin
josda100011-Oct-10 4:05
josda100011-Oct-10 4:05 
GeneralRe: False selection... PinPopular
Stryder_111-Oct-10 3:35
Stryder_111-Oct-10 3:35 
GeneralRe: False selection... Pin
CDP180211-Oct-10 3:46
CDP180211-Oct-10 3:46 
GeneralRe: False selection... Pin
lordofawesome11-Oct-10 3:46
lordofawesome11-Oct-10 3:46 
GeneralRe: False selection... Pin
Stryder_111-Oct-10 6:34
Stryder_111-Oct-10 6:34 
GeneralRe: False selection... Pin
lordofawesome11-Oct-10 6:35
lordofawesome11-Oct-10 6:35 
GeneralRe: False selection... Pin
ely_bob12-Oct-10 3:42
professionalely_bob12-Oct-10 3:42 
GeneralRe: False selection... Pin
ely_bob12-Oct-10 3:40
professionalely_bob12-Oct-10 3:40 
GeneralRe: False selection... Pin
David Skelly11-Oct-10 3:55
David Skelly11-Oct-10 3:55 
GeneralRe: False selection... Pin
lordofawesome11-Oct-10 4:23
lordofawesome11-Oct-10 4:23 
GeneralRe: False selection... Pin
David Skelly11-Oct-10 4:57
David Skelly11-Oct-10 4:57 
GeneralRe: False selection... Pin
lordofawesome11-Oct-10 5:40
lordofawesome11-Oct-10 5:40 
GeneralRe: False selection... Pin
ely_bob12-Oct-10 3:43
professionalely_bob12-Oct-10 3:43 
GeneralRe: False selection... Pin
ely_bob12-Oct-10 3:39
professionalely_bob12-Oct-10 3:39 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.