CodingStyle

Our code style is wacky but I ask that all contributors follow it. Here's some of the wacky things we do:

        if(condition) doSomething();

        // condition one is the first option

        if(conditionOne) {

            actionOne();

        // condition two is almost as good as one

        } else if(conditionTwo) {

            actionTwo();

        // everything else goes here

        } else {

            otherAction();

        }

       try {

           for(Iterator i = a.iterator(); !b.contains(i.next()); ) {

               // do nothing

           }

           System.out.println("A and B share at least one element");

       } catch(NoSuchElementException e) {

           // do nothing

       }