lib/common/cleanup.rb in bake-toolkit-2.60.2 vs lib/common/cleanup.rb in bake-toolkit-2.61.0

- old
+ new

@@ -1,16 +1,18 @@ require_relative "../blocks/block" require_relative "ext/file" +require_relative "../bake/config/checks" module Bake def self.cleanup() Blocks::ALL_BLOCKS.clear Blocks::ALL_COMPILE_BLOCKS.clear Blocks::CC2J.clear Bake::IDEInterface.instance.set_abort(false) Blocks::Block.reset_block_counter Blocks::Block.reset_delayed_result - File.cleanupWarnings + Configs::Checks.cleanupWarnings + end end