[jetrix-cvs] jetrix/src/java/net/jetrix/commands ListCommand.java,1.13,1.14
Brought to you by:
smanux
From: Emmanuel B. <sm...@us...> - 2005-05-04 08:57:51
|
Update of /cvsroot/jetrix/jetrix/src/java/net/jetrix/commands In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19427/src/java/net/jetrix/commands Modified Files: ListCommand.java Log Message: Added the visibility parameter on the channel configuration Index: ListCommand.java =================================================================== RCS file: /cvsroot/jetrix/jetrix/src/java/net/jetrix/commands/ListCommand.java,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** ListCommand.java 4 Apr 2005 09:36:16 -0000 1.13 --- ListCommand.java 4 May 2005 08:57:42 -0000 1.14 *************** *** 60,63 **** --- 60,69 ---- ChannelConfig conf = channel.getConfig(); + // skip invisible channels + if (!conf.isVisible()) + { + continue; + } + String cname = conf.getName(); while (cname.length() < 6) |