diff --git a/MMMCommonCore.podspec b/MMMCommonCore.podspec index c0ac4d9..4226afb 100644 --- a/MMMCommonCore.podspec +++ b/MMMCommonCore.podspec @@ -6,7 +6,7 @@ Pod::Spec.new do |s| s.name = "MMMCommonCore" - s.version = "1.15.0" + s.version = "1.15.1" s.summary = "Small bits and pieces reused in many pods from MMMTemple" s.description = s.summary s.homepage = "https://github.com/mediamonks/#{s.name}" diff --git a/Sources/MMMCommonCore/ArrayBuilder.swift b/Sources/MMMCommonCore/ArrayBuilder.swift index adc13c8..6caebd4 100644 --- a/Sources/MMMCommonCore/ArrayBuilder.swift +++ b/Sources/MMMCommonCore/ArrayBuilder.swift @@ -61,10 +61,6 @@ public struct ArrayBuilder { return [] } - public static func buildBlock(_ component: T) -> [T] { - return [component] - } - public static func buildBlock(_ components: T...) -> [T] { return components }