lib/git/multi/config.rb in git-multi-4.0.1 vs lib/git/multi/config.rb in git-multi-5.0.0

- old
+ new

@@ -1,8 +1,7 @@ module Git module Multi - module_function def local_option(path, name, default = nil) value = `git -C #{path} config --local --get #{name}`.chomp.freeze value.empty? && default ? default : value @@ -24,8 +23,7 @@ def env_var(name, default = nil) value = ENV[name] (value.nil? || value.empty?) && default ? default : value end - end end