[Bprocessor-commit] model/src/net/sourceforge/bprocessor/model Space.java, 1.172, 1.173
Status: Pre-Alpha
Brought to you by:
henryml
From: Michael L. <he...@us...> - 2007-09-21 08:23:11
|
Update of /cvsroot/bprocessor/model/src/net/sourceforge/bprocessor/model In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv25789/src/net/sourceforge/bprocessor/model Modified Files: Space.java Log Message: Cosmetic changes Index: Space.java =================================================================== RCS file: /cvsroot/bprocessor/model/src/net/sourceforge/bprocessor/model/Space.java,v retrieving revision 1.172 retrieving revision 1.173 diff -C2 -d -r1.172 -r1.173 *** Space.java 14 Sep 2007 10:57:43 -0000 1.172 --- Space.java 21 Sep 2007 08:23:12 -0000 1.173 *************** *** 1499,1505 **** String lvl = getLevelName(); if (getClassification() != null) { ! return " - " + lvl + " - " + getClassification().toString(); } else { ! return " - " + lvl; } } else { --- 1499,1505 ---- String lvl = getLevelName(); if (getClassification() != null) { ! return lvl + " - " + getClassification().toString(); } else { ! return lvl; } } else { *************** *** 1521,1525 **** return name; } else { ! return name + " " + lvl; } } --- 1521,1529 ---- return name; } else { ! if (name.length() > 0) { ! return name + " - " + lvl; ! } else { ! return lvl; ! } } } |