Skip to content

Commit 8383e9d

Browse files
committed
rubocop (strong) opinions
1 parent 898632e commit 8383e9d

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

lib/jars/mima.rb

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,8 @@ module Jars
99
#
1010
# Mima wraps the Maven Resolver (Aether) API as a standalone library (no Maven process is spawned).
1111
module Mima
12-
1312
class << self
14-
@@jars_loaded = nil
13+
@@jars_loaded = nil # rubocop:disable Style/ClassVars
1514

1615
# Loads the bundled Mima jars onto the classpath.
1716
# Safe to call multiple times; only loads once.
@@ -26,7 +25,7 @@ def ensure_jars_loaded
2625
load File.join(mima_dir, "context-#{MIMA_VERSION}.jar")
2726
load File.join(mima_dir, "standalone-static-uber-#{MIMA_VERSION}.jar")
2827

29-
@@jars_loaded = true
28+
@@jars_loaded = true # rubocop:disable Style/ClassVars
3029
end
3130

3231
# Builds a +ContextOverrides+ from jar-dependencies configuration

0 commit comments

Comments
 (0)