Remove dead code

This commit is contained in:
Aleksey Kladov 2020-04-10 15:54:05 +02:00
parent 4560fe2abf
commit e0f02d233f
5 changed files with 191 additions and 206 deletions

View file

@ -65,7 +65,7 @@ pub trait TypeBoundsOwner: AstNode {
}
fn colon_token(&self) -> Option<SyntaxToken> {
support::token2(self.syntax(), T![:])
support::token(self.syntax(), T![:])
}
}