Skip to content

Commit

Permalink
Junk commit to re-trigger CI
Browse files Browse the repository at this point in the history
  • Loading branch information
psparrow committed May 5, 2021
1 parent ee7c24c commit 38e7e54
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions lib/bootsnap/load_path_cache/change_observer.rb
Expand Up @@ -16,13 +16,13 @@ def push(*entries)
super
end

def unshift(*entries)
@lpc_observer.unshift_paths(self, *entries.map(&:to_s))
def append(*entries)
@lpc_observer.push_paths(self, *entries.map(&:to_s))
super
end

def concat(entries)
@lpc_observer.push_paths(self, *entries.map(&:to_s))
def unshift(*entries)
@lpc_observer.unshift_paths(self, *entries.map(&:to_s))
super
end

Expand All @@ -31,7 +31,7 @@ def prepend(*entries)
super
end

def append(*entries)
def concat(entries)
@lpc_observer.push_paths(self, *entries.map(&:to_s))
super
end
Expand Down

0 comments on commit 38e7e54

Please sign in to comment.