[Asterisk-java-cvs] CVS: asterisk-java/src/java/net/sf/asterisk/fastagi/command ExecCommand.java,1.3
Brought to you by:
srt
From: Stefan R. <sr...@us...> - 2005-04-10 07:44:58
|
Update of /cvsroot/asterisk-java/asterisk-java/src/java/net/sf/asterisk/fastagi/command In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15403/src/java/net/sf/asterisk/fastagi/command Modified Files: ExecCommand.java Log Message: Fixed setApplication: no longer sets options to null. Index: ExecCommand.java =================================================================== RCS file: /cvsroot/asterisk-java/asterisk-java/src/java/net/sf/asterisk/fastagi/command/ExecCommand.java,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -p -r1.3 -r1.4 --- ExecCommand.java 10 Mar 2005 21:48:11 -0000 1.3 +++ ExecCommand.java 10 Apr 2005 07:44:48 -0000 1.4 @@ -18,8 +18,8 @@ package net.sf.asterisk.fastagi.command; /** * Executes an application with the given options.<br> - * Returns whatever the application returns, or -2 on failure to find - * application. + * Returns whatever the application returns, or -2 if the application was not + * found. * * @author srt * @version $Id$ @@ -81,7 +81,6 @@ public class ExecCommand extends AGIComm public void setApplication(String application) { this.application = application; - this.options = null; } /** |