I am trying to call a method, but it is giving this error:
java:112: error: required: String, String
found: String
reason: actual and formal arguments lists differ in length
Here is the method I'm trying to call:
public void setShippingDest(String inCustName, String inDestn) {
// ...
}
Here is how I'm trying to call it:
shipOrder.setShippingDest("Broome");