We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 898632e commit 8383e9dCopy full SHA for 8383e9d
1 file changed
lib/jars/mima.rb
@@ -9,9 +9,8 @@ module Jars
9
#
10
# Mima wraps the Maven Resolver (Aether) API as a standalone library (no Maven process is spawned).
11
module Mima
12
-
13
class << self
14
- @@jars_loaded = nil
+ @@jars_loaded = nil # rubocop:disable Style/ClassVars
15
16
# Loads the bundled Mima jars onto the classpath.
17
# Safe to call multiple times; only loads once.
@@ -26,7 +25,7 @@ def ensure_jars_loaded
26
25
load File.join(mima_dir, "context-#{MIMA_VERSION}.jar")
27
load File.join(mima_dir, "standalone-static-uber-#{MIMA_VERSION}.jar")
28
29
- @@jars_loaded = true
+ @@jars_loaded = true # rubocop:disable Style/ClassVars
30
end
31
32
# Builds a +ContextOverrides+ from jar-dependencies configuration
0 commit comments