Skip to content

Commit de597ba

Browse files
committed
cleanup unused constants
1 parent c193400 commit de597ba

3 files changed

Lines changed: 2 additions & 7 deletions

File tree

lib/buildingsync/model_articulation/facility.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ def read_and_create_initial_systems
233233
end
234234

235235
# @see BuildingSync::Report.add_cb_modeled
236-
def add_cb_modeled(id = "Scenario-#{BuildingSync::BASELINE}")
236+
def add_cb_modeled(id = "Scenario-Baseline")
237237
@report.add_cb_modeled(id)
238238
end
239239

lib/buildingsync/report.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ def get_first_scenario_site_eui(scenario)
199199
# add a current building modeled scenario and set the @cb_modeled attribute
200200
# @param id [String] id to use for the scenario
201201
# @return [NilClass]
202-
def add_cb_modeled(id = "Scenario-#{BuildingSync::BASELINE}")
202+
def add_cb_modeled(id = "Scenario-Baseline")
203203
if @cb_modeled.nil? || @cb_modeled.empty?
204204
g = BuildingSync::Generator.new
205205
scenario_xml = g.add_scenario_to_report(@base_xml, 'CBModeled', id)

lib/buildingsync/version.rb

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,4 @@
4242
module BuildingSync
4343
# version of the BuildingSync gem
4444
VERSION = '0.2.0'
45-
46-
# baseline string
47-
BASELINE = 'Baseline'
48-
# measured string
49-
MEASURED = 'Measured'
5045
end

0 commit comments

Comments
 (0)