Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove PreviousVersion attributes for previous milestones #952

Merged
merged 1 commit into from
Jan 8, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions Revit_Engine/Create/Elements/DraftingInstance.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ public static partial class Create
/**** Public methods ****/
/***************************************************/

[PreviousVersion("4.0", "BH.Engine.Adapters.Revit.Create.DraftingInstance(System.String, System.String, System.String, BH.oM.Geometry.Point)")]
[Description("Creates DraftingInstance object based on point location, Revit family name and family type name. Such DraftingInstance can be pushed to Revit as a point-driven drafting element.")]
[Input("familyName", "Name of Revit family to be used when creating the element.")]
[Input("familyTypeName", "Name of Revit family type to be used when creating the element.")]
Expand All @@ -56,7 +55,6 @@ public static DraftingInstance DraftingInstance(string familyName, string family

/***************************************************/

[PreviousVersion("4.0", "BH.Engine.Adapters.Revit.Create.DraftingInstance(BH.oM.Adapters.Revit.Properties.InstanceProperties, System.String, BH.oM.Geometry.Point)")]
[Description("Creates DraftingInstance object based on point location and BHoM InstanceProperties. Such DraftingInstance can be pushed to Revit as a point-driven drafting element.")]
[InputFromProperty("properties")]
[InputFromProperty("viewName")]
Expand Down
4 changes: 0 additions & 4 deletions Revit_Engine/Create/Elements/ModelInstance.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ public static partial class Create
/**** Public methods ****/
/***************************************************/

[PreviousVersion("4.0", "BH.Engine.Adapters.Revit.Create.ModelInstance(System.String, System.String, BH.oM.Geometry.Point)")]
[Description("Creates ModelInstance object based on point location, Revit family name and family type name. Such ModelInstance can be pushed to Revit as a point-driven element, e.g. chair.")]
[Input("familyName", "Name of Revit family to be used when creating the element.")]
[Input("familyTypeName", "Name of Revit family type to be used when creating the element.")]
Expand All @@ -52,7 +51,6 @@ public static ModelInstance ModelInstance(string familyName, string familyTypeNa

/***************************************************/

[PreviousVersion("4.0", "BH.Engine.Adapters.Revit.Create.ModelInstance(System.String, System.String, BH.oM.Geometry.ICurve)")]
[Description("Creates ModelInstance object based on curve location, Revit family name and family type name. Such ModelInstance can be pushed to Revit as a curve-driven element, e.g. duct.")]
[Input("familyName", "Name of Revit family to be used when creating the element.")]
[Input("familyTypeName", "Name of Revit family type to be used when creating the element.")]
Expand All @@ -69,7 +67,6 @@ public static ModelInstance ModelInstance(string familyName, string familyTypeNa

/***************************************************/

[PreviousVersion("4.0", "BH.Engine.Adapters.Revit.Create.ModelInstance(BH.oM.Adapters.Revit.Properties.InstanceProperties, BH.oM.Geometry.Point)")]
[Description("Creates ModelInstance object based on point location and BHoM InstanceProperties. Such ModelInstance can be pushed to Revit as a point-driven element, e.g. chair.")]
[InputFromProperty("properties")]
[InputFromProperty("location")]
Expand All @@ -95,7 +92,6 @@ public static ModelInstance ModelInstance(InstanceProperties properties, Point l

/***************************************************/

[PreviousVersion("4.0", "BH.Engine.Adapters.Revit.Create.ModelInstance(BH.oM.Adapters.Revit.Properties.InstanceProperties, BH.oM.Geometry.ICurve)")]
[Description("Creates ModelInstance object based on curve location and BHoM InstanceProperties. Such ModelInstance can be pushed to Revit as a point-driven element, e.g. chair.")]
[InputFromProperty("properties")]
[InputFromProperty("location")]
Expand Down
1 change: 0 additions & 1 deletion Revit_Engine/Create/Requests/FilterTypesOfFamily.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ public static partial class Create
/**** Public methods ****/
/***************************************************/

[PreviousVersion("3.2", "BH.Engine.Adapters.Revit.Create.FilterFamilyTypesOfFamily(BH.oM.Base.IBHoMObject)")]
[Description("Creates IRequest that filters Revit Family Types of input Family.")]
[Input("bHoMObject", "BHoMObject that contains ElementId of a correspondent Revit element in RevitIdentifiers fragment attached to it - usually previously pulled from Revit.")]
[Output("request", "Created request.")]
Expand Down
1 change: 0 additions & 1 deletion Revit_Engine/Query/RevitEdges.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ public static partial class Query
/**** Public methods ****/
/***************************************************/

[PreviousVersion("4.0", "BH.Engine.Adapters.Revit.Query.Edges(BH.oM.Base.IBHoMObject)")]
[Description("Returns edges of Revit element correspondent to given BHoMObject. This value is stored in RevitGeometry fragment.")]
[Input("bHoMObject", "BHoMObject to be queried.")]
[Output("edges")]
Expand Down