Skip to content

Commit

Permalink
Fix capital D
Browse files Browse the repository at this point in the history
  • Loading branch information
IsakNaslundBh committed Dec 9, 2022
1 parent 28a94ec commit 1644baf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Structure_AdapterModules/GetLoadElementsWithoutId.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
namespace BH.Adapter.Modules
{
[Description("Get all elements that does not contain an adapter ID of the expected type. Avoids the need to again read and check against elements already in the model.")]
public class GetLoadElementsWithoutId<T> : IGetDependencyModule<IElementLoad<T>, T> where T : IBHoMObject
public class GetLoadElementsWithoutID<T> : IGetDependencyModule<IElementLoad<T>, T> where T : IBHoMObject
{
/***************************************************/
/**** Interface method ****/
Expand All @@ -58,7 +58,7 @@ public IEnumerable<T> GetDependencies(IEnumerable<IElementLoad<T>> objects)
/**** Constructors ****/
/***************************************************/

public GetLoadElementsWithoutId(IBHoMAdapter adapter)
public GetLoadElementsWithoutID(IBHoMAdapter adapter)
{
m_adapterIdType = adapter.AdapterIdFragmentType;
}
Expand Down
8 changes: 4 additions & 4 deletions Structure_AdapterModules/ModuleLoader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ public static void LoadModules(this BHoMAdapter adapter)
adapter.AdapterModules.Add(new CopyNodeProperties());
adapter.AdapterModules.Add(new GetCasesFromCombinations());
adapter.AdapterModules.Add(new GetCombinationsFromCombinations());
adapter.AdapterModules.Add(new GetLoadElementsWithoutId<Bar>(adapter));
adapter.AdapterModules.Add(new GetLoadElementsWithoutId<Node>(adapter));
adapter.AdapterModules.Add(new GetLoadElementsWithoutId<IAreaElement>(adapter));
adapter.AdapterModules.Add(new GetLoadElementsWithoutId<BHoMObject>(adapter)); //Gravity loads
adapter.AdapterModules.Add(new GetLoadElementsWithoutID<Bar>(adapter));
adapter.AdapterModules.Add(new GetLoadElementsWithoutID<Node>(adapter));
adapter.AdapterModules.Add(new GetLoadElementsWithoutID<IAreaElement>(adapter));
adapter.AdapterModules.Add(new GetLoadElementsWithoutID<BHoMObject>(adapter)); //Gravity loads
}
}
}
Expand Down

0 comments on commit 1644baf

Please sign in to comment.