summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorydah <[email protected]>2024-09-12 10:42:50 +0900
committerYuichiro Kaneko <[email protected]>2024-09-12 21:06:16 +0900
commitf47c057c327467a8dcdb8482b13d2ea281a6ad6f (patch)
tree17c4ad8c35c3fbed36ba4e5164e0c33e6cebd8b6
parent885cf350de4c80a918a33da109d0462711ac5e49 (diff)
Remove unnecessary file
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/11590
-rw-r--r--tool/lrama/lib/lrama/warning.rb25
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