MCRepositoryList.st
changeset 967 2c78238d70ce
parent 964 bba71a28671f
child 1095 87f223484bc3
equal deleted inserted replaced
966:1819c104488d 967:2c78238d70ce
    33 
    33 
    34     ^Iterator on:
    34     ^Iterator on:
    35         [:whatToDo| | selection |
    35         [:whatToDo| | selection |
    36         selection := self selectionHolder value.
    36         selection := self selectionHolder value.
    37         selection ifNotNil:[
    37         selection ifNotNil:[
    38         selection packages do: [:pkgentry|whatToDo value: pkgentry]]].
    38             selection packages do: [:pkgentry|whatToDo value: pkgentry]
       
    39         ]
       
    40     ].
    39 
    41 
    40     "Modified: / 16-09-2010 / 18:58:11 / Jan Vrany <jan.vrany@fit.cvut.cz>"
    42     "Modified: / 16-09-2010 / 18:58:11 / Jan Vrany <jan.vrany@fit.cvut.cz>"
    41 ! !
    43 ! !
    42 
    44 
    43 !MCRepositoryList methodsFor:'private'!
    45 !MCRepositoryList methodsFor:'private'!
    80 ! !
    82 ! !
    81 
    83 
    82 !MCRepositoryList class methodsFor:'documentation'!
    84 !MCRepositoryList class methodsFor:'documentation'!
    83 
    85 
    84 version
    86 version
    85     ^ '$Header: /cvs/stx/stx/goodies/monticello/MCRepositoryList.st,v 1.4 2015-02-01 14:14:51 cg Exp $'
    87     ^ '$Header: /cvs/stx/stx/goodies/monticello/MCRepositoryList.st,v 1.5 2015-02-07 11:09:30 cg Exp $'
    86 !
    88 !
    87 
    89 
    88 version_CVS
    90 version_CVS
    89     ^ '$Header: /cvs/stx/stx/goodies/monticello/MCRepositoryList.st,v 1.4 2015-02-01 14:14:51 cg Exp $'
    91     ^ '$Header: /cvs/stx/stx/goodies/monticello/MCRepositoryList.st,v 1.5 2015-02-07 11:09:30 cg Exp $'
    90 !
    92 !
    91 
    93 
    92 version_SVN
    94 version_SVN
    93     ^ '$Id: MCRepositoryList.st,v 1.4 2015-02-01 14:14:51 cg Exp $'
    95     ^ '$Id: MCRepositoryList.st,v 1.5 2015-02-07 11:09:30 cg Exp $'
    94 ! !
    96 ! !
    95 
    97