Skip to content

Commit

Permalink
fix: Using statements
Browse files Browse the repository at this point in the history
  • Loading branch information
AlanRynne committed Oct 10, 2024
1 parent 33a1c67 commit 7931d21
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
using Speckle.Converters.ArcGIS3.Utils;
using Speckle.Converters.Common;
using Speckle.Converters.Common.Objects;
using Speckle.Sdk.Common.Exceptions;
using Speckle.Sdk.Models;
using ValidationException = System.ComponentModel.DataAnnotations.ValidationException;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
using ArcGIS.Core.Geometry;
using Speckle.Converters.Common;
using Speckle.Converters.Common.Objects;
using Speckle.Sdk;

namespace Speckle.Converters.ArcGIS3.ToSpeckle.Raw;

Expand Down Expand Up @@ -52,7 +53,7 @@ is not MapPoint reprojectedPt
}
catch (ArgumentException ex)
{
throw new SpeckleConversionException(
throw new SpeckleException(
$"Conversion to Spatial Reference {_settingsStore.Current.ActiveCRSoffsetRotation.SpatialReference.Name} failed",
ex
);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
using Autodesk.AutoCAD.DatabaseServices;
using Speckle.Converters.Common;
using Speckle.Converters.Common.Objects;
using Speckle.Converters.Common.Registration;
using Speckle.Sdk.Common.Exceptions;
using Speckle.Sdk.Models;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
using Speckle.Converters.Common;
using Speckle.Converters.Common.Objects;
using Speckle.Converters.Common.Registration;
using Speckle.Sdk;
using Speckle.Sdk.Common.Exceptions;
using Speckle.Sdk.Models;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
using Speckle.Sdk.Common;
using Speckle.Sdk.Common.Exceptions;
using Speckle.Sdk.Models;
using ArgumentException = Autodesk.Revit.Exceptions.ArgumentException;

namespace Speckle.Converters.RevitShared.Helpers;

Expand Down

0 comments on commit 7931d21

Please sign in to comment.