103104105106107108109110111112113
try { return findFirstActiveChannel( PhoneNumber.class ); } catch ( IllegalStateException ignore ) { } PhoneNumber newChannel = new PhoneNumber( "??", "?????", "?????" ); newChannel.setActive( true ); addElement( newChannel ); return newChannel; }
129130131132133134135136137138139