You are viewing a plain text version of this content. The canonical link for it is here.
Posted to wsif-dev@ws.apache.org by ow...@apache.org on 2003/04/07 18:19:04 UTC

cvs commit: xml-axis-wsif/java/samples/multibinding/client/stub Run.java

owenb       2003/04/07 09:19:02

  Modified:    java/samples/multibinding/client/stub Run.java
  Log:
  Fixed bugzilla 18645
  
  Revision  Changes    Path
  1.2       +1 -1      xml-axis-wsif/java/samples/multibinding/client/stub/Run.java
  
  Index: Run.java
  ===================================================================
  RCS file: /home/cvs/xml-axis-wsif/java/samples/multibinding/client/stub/Run.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- Run.java	20 Dec 2002 12:55:42 -0000	1.1
  +++ Run.java	7 Apr 2003 16:19:01 -0000	1.2
  @@ -39,7 +39,7 @@
               // create the stub
   	    // check if the user specified a preferred port
               NetXmethodsServicesStockquoteStockQuotePortType stub = null;
  -	    if (args[2]!=null)
  +	    if (args.length > 2)
   		stub = (NetXmethodsServicesStockquoteStockQuotePortType) 
   		    service.getStub(args[2],NetXmethodsServicesStockquoteStockQuotePortType.class);
   	    else