diff options
author | Daniel Colson <[email protected]> | 2022-10-05 20:51:05 -0400 |
---|---|---|
committer | git <[email protected]> | 2022-10-06 10:04:41 +0900 |
commit | 3e84290213a86eff5e50ddf92a9b136a5034ac05 (patch) | |
tree | 215608b95fc565aec7a8c80eb5827b2067b5b7fc | |
parent | 358fe26b31c25033cc1857a4b44634f51d0ee354 (diff) |
[ruby/rdoc] Remove unused abbrev require
This library originally used `abbrev` to expand abbreviations into
fully-qualified classes, but that was replaced in
https://github.com/ruby/rdoc/commit/f9ffe6684e2afeac65c62bf1a5a2fce729f21001
`abbrev` is no longer used anywhere, so this commit removes the require.
https://github.com/ruby/rdoc/commit/b76775f27d
-rw-r--r-- | lib/rdoc/ri/driver.rb | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/rdoc/ri/driver.rb b/lib/rdoc/ri/driver.rb index dd66d532ca..d24f8d5eff 100644 --- a/lib/rdoc/ri/driver.rb +++ b/lib/rdoc/ri/driver.rb @@ -1,5 +1,4 @@ # frozen_string_literal: true -require 'abbrev' require 'optparse' begin |