feat: Removes unused files.

This commit is contained in:
2025-03-05 17:13:28 -05:00
parent 65f05dfc20
commit e0e5b10a34
2 changed files with 0 additions and 13 deletions

View File

@@ -1,9 +0,0 @@
import Foundation
extension Double {
func ensurePostive() -> Self {
if self < 0 { return self * -1 }
return self
}
}

View File

@@ -85,8 +85,4 @@ public extension HVACSystemPerformance.Request {
throw ValidationError(message: "System size should be greater than 0.")
}
}
struct ValidationError: Error {
let message: String
}
}