Ignore:
Timestamp:
Jan 12, 2013, 1:43:13 PM (11 years ago)
Author:
Jason Gross <jgross@mit.edu>
Children:
e3a0d71, 4485285
Parents:
4626016
git-author:
Jason Gross <jgross@mit.edu> (01/12/13 13:13:18)
git-committer:
Jason Gross <jgross@mit.edu> (01/12/13 13:43:13)
Message:
Remove trailing whitespace

This commit was made with the command sequence

    for i in $(git ls-files | tr '\n' ' ');
    do
      echo $i; sed -i s'/\s\+$//g' "$(readlink -f $i)";
    done
File:
1 edited

Legend:

Unmodified
Added
Removed
  • perl/modules/Jabber/lib/Net/XMPP/IQ.pm

    rc2bed55 r7869e48  
    198198
    199199               $IQ->RemoveTo();
    200  
     200
    201201  RemoveFrom() - removes the from attribute from the <iq/>.
    202202
    203203                 $IQ->RemoveFrom();
    204  
     204
    205205  RemoveID() - removes the id attribute from the <iq/>.
    206206
    207207               $IQ->RemoveID();
    208  
     208
    209209  RemoveType() - removes the type attribute from the <iq/>.
    210210
    211211                 $IQ->RemoveType();
    212  
     212
    213213  RemoveError() - removes the <error/> element from the <iq/>.
    214214
    215215                  $IQ->RemoveError();
    216  
     216
    217217  RemoveErrorCode() - removes the code attribute from the <error/>
    218218                      element in the <iq/>.
     
    222222=head2 Test functions
    223223
    224   DefinedTo() - returns 1 if the to attribute is defined in the <iq/>, 
     224  DefinedTo() - returns 1 if the to attribute is defined in the <iq/>,
    225225                0 otherwise.
    226226
     
    232232                  $test = $IQ->DefinedFrom();
    233233
    234   DefinedID() - returns 1 if the id attribute is defined in the <iq/>, 
     234  DefinedID() - returns 1 if the id attribute is defined in the <iq/>,
    235235                0 otherwise.
    236236
     
    242242                  $test = $IQ->DefinedType();
    243243
    244   DefinedError() - returns 1 if <error/> is defined in the <iq/>, 
     244  DefinedError() - returns 1 if <error/> is defined in the <iq/>,
    245245                   0 otherwise.
    246246
     
    285285
    286286    $self->{FUNCS} = \%FUNCTIONS;
    287    
     287
    288288    $self->_init(@_);
    289289
Note: See TracChangeset for help on using the changeset viewer.