remove unused method
This commit is contained in:
parent
75bd1c3f21
commit
8348beb729
2 changed files with 0 additions and 12 deletions
|
@ -34,11 +34,5 @@ class CSharpParser(TokenParser):
|
||||||
content = content[0] if len(content) == 1 else '.'.join(content[0:len(content)-1])
|
content = content[0] if len(content) == 1 else '.'.join(content[0:len(content)-1])
|
||||||
self.append(content, truncate=False)
|
self.append(content, truncate=False)
|
||||||
|
|
||||||
def _process_text(self, token, content):
|
|
||||||
if self.state is not None:
|
|
||||||
if content == "\n" and self.parens == 0:
|
|
||||||
self.state = None
|
|
||||||
self.nonpackage = False
|
|
||||||
|
|
||||||
def _process_other(self, token, content):
|
def _process_other(self, token, content):
|
||||||
pass
|
pass
|
||||||
|
|
|
@ -34,11 +34,5 @@ class JavaParser(TokenParser):
|
||||||
content = content[0] if len(content) == 1 else '.'.join(content[0:len(content)-1])
|
content = content[0] if len(content) == 1 else '.'.join(content[0:len(content)-1])
|
||||||
self.append(content, truncate=False)
|
self.append(content, truncate=False)
|
||||||
|
|
||||||
def _process_text(self, token, content):
|
|
||||||
if self.state is not None:
|
|
||||||
if content == "\n" and self.parens == 0:
|
|
||||||
self.state = None
|
|
||||||
self.nonpackage = False
|
|
||||||
|
|
||||||
def _process_other(self, token, content):
|
def _process_other(self, token, content):
|
||||||
pass
|
pass
|
||||||
|
|
Loading…
Reference in a new issue