| Index: third_party/WebKit/Tools/Scripts/webkitpy/style/filereader.py
|
| diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/style/filereader.py b/third_party/WebKit/Tools/Scripts/webkitpy/style/filereader.py
|
| index 9226dd81c4d566c227f923c100df4d0a4c28fd27..5d6b76c0808bc661fdd526b57c906463dcd8f7f3 100644
|
| --- a/third_party/WebKit/Tools/Scripts/webkitpy/style/filereader.py
|
| +++ b/third_party/WebKit/Tools/Scripts/webkitpy/style/filereader.py
|
| @@ -51,7 +51,6 @@ class TextFileReader(object):
|
| processed this instance actually because
|
| the files don't have any modified lines
|
| but should be treated as processed.
|
| -
|
| """
|
|
|
| def __init__(self, filesystem, processor):
|
| @@ -59,7 +58,6 @@ class TextFileReader(object):
|
|
|
| Arguments:
|
| processor: A ProcessorBase instance.
|
| -
|
| """
|
| # FIXME: Although TextFileReader requires a FileSystem it circumvents it in two places!
|
| self.filesystem = filesystem
|
| @@ -72,7 +70,6 @@ class TextFileReader(object):
|
|
|
| Raises:
|
| IOError: If the file does not exist or cannot be read.
|
| -
|
| """
|
| # Support the UNIX convention of using "-" for stdin.
|
| if file_path == '-':
|
| @@ -107,7 +104,6 @@ class TextFileReader(object):
|
|
|
| Raises:
|
| SystemExit: If no file at file_path exists.
|
| -
|
| """
|
| self.file_count += 1
|
|
|
|
|