Removed Methods Namespace

This commit is contained in:
2024-12-29 10:46:13 -07:00
parent 0215e838e7
commit 1f8c4569ee
62 changed files with 755 additions and 171 deletions

View File

@ -42,7 +42,7 @@ public class Location(int bottom, double confidence, int left, int right, int to
public static Location Get(int bottom, double confidence, int height, int left, int right, int top, int width, int zCount)
{
Location result = new(bottom, confidence, left, right, top);
_ = Stateless.Methods.Location.Check(bottom, height, left, right, top, width, zCount, throwException: true);
_ = Stateless.Location.Check(bottom, height, left, right, top, width, zCount, throwException: true);
return result;
}