diff --git a/Library/Homebrew/cask/lib/hbc/cli/reinstall.rb b/Library/Homebrew/cask/lib/hbc/cli/reinstall.rb
index ac514bd506bd9b939e2bac79ad43cfb7ffd0588f..3560a4795b391603080156d40248a93dd61cd2ab 100644
--- a/Library/Homebrew/cask/lib/hbc/cli/reinstall.rb
+++ b/Library/Homebrew/cask/lib/hbc/cli/reinstall.rb
@@ -19,7 +19,7 @@ module Hbc
                                                            "Casks", "#{cask_token}.rb")
 
                 # use the same cask file that was used for installation, if possible
-                installed_cask = Hbc.load(latest_installed_cask_file) if latest_installed_cask_file.exist?
+                installed_cask = CaskLoader.load_from_file(latest_installed_cask_file) if latest_installed_cask_file.exist?
               end
 
               # Always force uninstallation, ignore method parameter
diff --git a/Library/Homebrew/cask/lib/hbc/cli/uninstall.rb b/Library/Homebrew/cask/lib/hbc/cli/uninstall.rb
index 2bebb97b0942c3118e8be3988c428388d128152a..d74b59d4c651439334c339be9a5f91c7504fc8e9 100644
--- a/Library/Homebrew/cask/lib/hbc/cli/uninstall.rb
+++ b/Library/Homebrew/cask/lib/hbc/cli/uninstall.rb
@@ -20,7 +20,7 @@ module Hbc
                                                    "Casks", "#{cask_token}.rb")
 
             # use the same cask file that was used for installation, if possible
-            cask = Hbc.load(latest_installed_cask_file) if latest_installed_cask_file.exist?
+            cask = CaskLoader.load_from_file(latest_installed_cask_file) if latest_installed_cask_file.exist?
           end
 
           Installer.new(cask, force: force).uninstall