Use primitive boolean and not boxed for return values
commit5738c26c5156c1a00d83a0279f395e989c8b64fb
authorShawn O. Pearce <spearce@spearce.org>
Fri, 15 Jun 2007 04:39:00 +0000 (15 00:39 -0400)
committerShawn O. Pearce <spearce@spearce.org>
Fri, 15 Jun 2007 04:39:00 +0000 (15 00:39 -0400)
tree27f61b30281606d985a843cca3e20e8bfdadab1a
parentb3c90080143d87c251b009114c1133788398710e
Use primitive boolean and not boxed for return values

Its better form to return a primitive boolean when all you want
is a standard two-logic boolean value (true or false).  The boxed
type (java.lang.Boolean) should only be used if you need to handle
three-valued logic (like SQL's NULL) or want to store a boolean
into a collection, and you aren't using Java 5's autoboxing feature.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
org.spearce.egit.core/src/org/spearce/egit/core/project/RepositoryMapping.java