Removed more unnecessary lifetime annotations.
This commit is contained in:
parent
7c6843052f
commit
df0f05f4be
1 changed files with 1 additions and 1 deletions
|
@ -151,7 +151,7 @@ pub struct ServerIterator<'a, T> where T: IrcStream {
|
|||
impl<'a, T> ServerIterator<'a, T> where T: IrcStream {
|
||||
/// Creates a new ServerIterator for the desired IrcServer.
|
||||
#[experimental]
|
||||
pub fn new(server: &'a IrcServer<T>) -> ServerIterator<'a, T> {
|
||||
pub fn new(server: &IrcServer<T>) -> ServerIterator<T> {
|
||||
ServerIterator {
|
||||
server: server
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue