[Clirr-devel] CVS: clirr/src/java/net/sf/clirr/event ApiDifference.java,1.7,1.8
Status: Alpha
Brought to you by:
lkuehne
From: Lars K?h. <lk...@us...> - 2003-12-31 09:50:42
|
Update of /cvsroot/clirr/clirr/src/java/net/sf/clirr/event In directory sc8-pr-cvs1:/tmp/cvs-serv18357/src/java/net/sf/clirr/event Modified Files: ApiDifference.java Log Message: fixed formating Index: ApiDifference.java =================================================================== RCS file: /cvsroot/clirr/clirr/src/java/net/sf/clirr/event/ApiDifference.java,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- ApiDifference.java 31 Dec 2003 09:46:30 -0000 1.7 +++ ApiDifference.java 31 Dec 2003 09:50:37 -0000 1.8 @@ -68,7 +68,7 @@ /** * Create a new API differnce representation. * - * @param report a human readable string describing the change that was made. + * @param report a human readable string describing the change that was made. * @param severity the severity in terms of binary API compatibility. */ public ApiDifference(String report, Severity severity, String clazz, String method, String field) @@ -124,7 +124,7 @@ public String toString() { return report + " (" + severity + ") - " - + getAffectedClass() + '[' + getAffectedField() + '/'+ getAffectedMethod() + ']'; + + getAffectedClass() + '[' + getAffectedField() + '/' + getAffectedMethod() + ']'; } /** |