diff options
author | ydah <[email protected]> | 2024-09-12 10:42:50 +0900 |
---|---|---|
committer | Yuichiro Kaneko <[email protected]> | 2024-09-12 21:06:16 +0900 |
commit | f47c057c327467a8dcdb8482b13d2ea281a6ad6f (patch) | |
tree | 17c4ad8c35c3fbed36ba4e5164e0c33e6cebd8b6 | |
parent | 885cf350de4c80a918a33da109d0462711ac5e49 (diff) |
Remove unnecessary file
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/11590
-rw-r--r-- | tool/lrama/lib/lrama/warning.rb | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/tool/lrama/lib/lrama/warning.rb b/tool/lrama/lib/lrama/warning.rb deleted file mode 100644 index 3c99791ebf..0000000000 --- a/tool/lrama/lib/lrama/warning.rb +++ /dev/null @@ -1,25 +0,0 @@ -module Lrama - class Warning - attr_reader :errors, :warns - - def initialize(out = STDERR) - @out = out - @errors = [] - @warns = [] - end - - def error(message) - @out << message << "\n" - @errors << message - end - - def warn(message) - @out << message << "\n" - @warns << message - end - - def has_error? - end - end -end |