jkesselm 01/10/18 06:04:13
Modified: java/src/org/apache/xalan Version.java
Log:
Whups; sloppy: Actually, problem was that the latter two arguments to ?:
must agree in datatype. Dropped in a quick-and-dirty int-to-string hint.
Revision Changes Path
1.3 +1 -1 xml-xalan/java/src/org/apache/xalan/Version.java
Index: Version.java
===================================================================
RCS file: /home/cvs/xml-xalan/java/src/org/apache/xalan/Version.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- Version.java 2001/10/18 12:54:33 1.2
+++ Version.java 2001/10/18 13:04:13 1.3
@@ -84,7 +84,7 @@
return getProduct()+" "+getImplementationLanguage()+" "
+getMajorVersionNum()+"."+getReleaseVersionNum()+"."
+( (getDevelopmentVersionNum() > 0) ?
- ("D"+getDevelopmentVersionNum()) :
(getMaintenanceVersionNum()));
+ ("D"+getDevelopmentVersionNum()) :
(""+getMaintenanceVersionNum()));
}
/**
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]