Remove freezing symbols in disk/trigger conig

This commit is contained in:
Brian Cain 2020-06-08 15:02:44 -07:00
parent a855e76201
commit 492a532ef5
No known key found for this signature in database
GPG Key ID: 9FC4639B2E4510A0
2 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@ module VagrantPlugins
# Config class for a given Disk
#-------------------------------------------------------------------
DEFAULT_DISK_TYPES = [:disk, :dvd, :floppy].map(&:freeze).freeze
DEFAULT_DISK_TYPES = [:disk, :dvd, :floppy].freeze
# Note: This value is for internal use only
#

View File

@ -9,7 +9,7 @@ module VagrantPlugins
# Defaults
DEFAULT_ON_ERROR = :halt
DEFAULT_EXIT_CODE = 0
VALID_TRIGGER_TYPES = [:command, :action, :hook].map(&:freeze).freeze
VALID_TRIGGER_TYPES = [:command, :action, :hook].freeze
#-------------------------------------------------------------------
# Config class for a given Trigger