[javac] Compiling 2 source files to /Users/bobirvin/Sites/
SupplierConnect/build/supplierconnect-ejb
[javac] /Users/bobirvin/Sites/SupplierConnect/src/ejb/com/
kenisys/supplierconnect/handler/PunchoutOrderMessageHandler.java:
81: toString() in java.lang.Object cannot be applied to (long)
[javac] String long_string = toString(order_ID);
You are spelling it wrong:
String long_string = Long.toString(order_ID);
in your case, you are attempting to invoke toString(...) on the
current object (i.e. PunchoutOrderMessageHandler), which has no
suitable method, rather than explicitly invoking the static toString
(long) method on the Long class.
-wilhelm
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Java-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/java-dev/email@hidden