diff --git a/NumLib/DOF/LocalToGlobalIndexMap.cpp b/NumLib/DOF/LocalToGlobalIndexMap.cpp
index 7be3a1c3dcfde3e57d83c2e0f91d226a38e0cc3c..8aa12a72be0d1ab853ba2bb23c322b03f90fcd2c 100644
--- a/NumLib/DOF/LocalToGlobalIndexMap.cpp
+++ b/NumLib/DOF/LocalToGlobalIndexMap.cpp
@@ -256,27 +256,6 @@ LocalToGlobalIndexMap::LocalToGlobalIndexMap(
     }
 }
 
-LocalToGlobalIndexMap* LocalToGlobalIndexMap::deriveBoundaryConstrainedMap(
-    int const variable_id,
-    int const component_id,
-    std::unique_ptr<MeshLib::MeshSubsets>&& mesh_subsets,
-    std::vector<MeshLib::Element*> const& elements) const
-{
-    DBUG("Construct reduced local to global index map.");
-    // Create a subset of the current mesh component map.
-    auto const global_component_id =
-        getGlobalComponent(variable_id, component_id);
-
-    auto mesh_component_map =
-        _mesh_component_map.getSubset({global_component_id}, *mesh_subsets);
-
-    std::vector<std::unique_ptr<MeshLib::MeshSubsets>> all_mesh_subsets;
-    all_mesh_subsets.emplace_back(std::move(mesh_subsets));
-    return new LocalToGlobalIndexMap(std::move(all_mesh_subsets),
-                                     global_component_id, elements,
-                                     std::move(mesh_component_map));
-}
-
 LocalToGlobalIndexMap* LocalToGlobalIndexMap::deriveBoundaryConstrainedMap(
     int const variable_id,
     std::vector<int> const& component_ids,
diff --git a/NumLib/DOF/LocalToGlobalIndexMap.h b/NumLib/DOF/LocalToGlobalIndexMap.h
index fbbba84a825ff3f9e3c56666e2d2973129672106..b304aae68416e137c7e2c0917ccdcb7c3770e159 100644
--- a/NumLib/DOF/LocalToGlobalIndexMap.h
+++ b/NumLib/DOF/LocalToGlobalIndexMap.h
@@ -78,25 +78,10 @@ public:
         std::vector<std::vector<MeshLib::Element*>const*> const& vec_var_elements,
         NumLib::ComponentOrder const order);
 
-    /// Derive a LocalToGlobalIndexMap constrained to a set of mesh subsets and
-    /// elements. A new mesh component map will be constructed using the passed
-    /// mesh_subsets for the given variable and component id.
-    ///
-    /// This is single-component version.
-    ///
-    /// \note The elements are not necessarily those used in the mesh_subsets.
-    LocalToGlobalIndexMap* deriveBoundaryConstrainedMap(
-        int const variable_id,
-        int const component_id,
-        std::unique_ptr<MeshLib::MeshSubsets>&& mesh_subsets,
-        std::vector<MeshLib::Element*> const& elements) const;
-
     /// Derive a LocalToGlobalIndexMap constrained to a set of mesh subsets and
     /// elements. A new mesh component map will be constructed using the passed
     /// mesh_subsets for the given variable and component ids.
     ///
-    /// This is multi-component version.
-    ///
     /// \note The elements are not necessarily those used in the mesh_subsets.
     LocalToGlobalIndexMap* deriveBoundaryConstrainedMap(
         int const variable_id,
diff --git a/ProcessLib/BoundaryCondition/GenericNaturalBoundaryCondition-impl.h b/ProcessLib/BoundaryCondition/GenericNaturalBoundaryCondition-impl.h
index 7613787b65e25914edf4b93512eb3f07ef1168f7..fe4949de469d88ac8051f343ac94978f5bfec567 100644
--- a/ProcessLib/BoundaryCondition/GenericNaturalBoundaryCondition-impl.h
+++ b/ProcessLib/BoundaryCondition/GenericNaturalBoundaryCondition-impl.h
@@ -55,7 +55,7 @@ GenericNaturalBoundaryCondition<BoundaryConditionData,
     // Create local DOF table from intersected mesh subsets for the given
     // variable and component ids.
     _dof_table_boundary.reset(dof_table_bulk.deriveBoundaryConstrainedMap(
-        variable_id, component_id, std::move(all_mesh_subsets), _elements));
+        variable_id, {component_id}, std::move(all_mesh_subsets), _elements));
 
     createLocalAssemblers<LocalAssemblerImplementation>(
         global_dim, _elements, *_dof_table_boundary, shapefunction_order, _local_assemblers,
diff --git a/ProcessLib/LIE/BoundaryCondition/GenericNaturalBoundaryCondition-impl.h b/ProcessLib/LIE/BoundaryCondition/GenericNaturalBoundaryCondition-impl.h
index 7fe1d52b7c749971d9530ae945a05608adb3d84d..0509fe0d2427ebb6686d725af2c1da649f0bada5 100644
--- a/ProcessLib/LIE/BoundaryCondition/GenericNaturalBoundaryCondition-impl.h
+++ b/ProcessLib/LIE/BoundaryCondition/GenericNaturalBoundaryCondition-impl.h
@@ -62,7 +62,7 @@ GenericNaturalBoundaryCondition<BoundaryConditionData,
     // Create local DOF table from intersected mesh subsets for the given
     // variable and component ids.
     _dof_table_boundary.reset(dof_table_bulk.deriveBoundaryConstrainedMap(
-        variable_id, component_id, std::move(all_mesh_subsets), _elements));
+        variable_id, {component_id}, std::move(all_mesh_subsets), _elements));
 
     createLocalAssemblers<LocalAssemblerImplementation>(
         global_dim, _elements, *_dof_table_boundary, shapefunction_order, _local_assemblers,
diff --git a/Tests/NumLib/LocalToGlobalIndexMap.cpp b/Tests/NumLib/LocalToGlobalIndexMap.cpp
index f26ed7563f059509d9dd96b28ef95359fedc9b48..11ce39c3e04fc23bf16c840aef674218d2006324 100644
--- a/Tests/NumLib/LocalToGlobalIndexMap.cpp
+++ b/Tests/NumLib/LocalToGlobalIndexMap.cpp
@@ -107,8 +107,8 @@ TEST_F(NumLibLocalToGlobalIndexMapTest, DISABLED_SubsetByComponent)
         new MeshLib::MeshSubsets{selected_subset.get()}};
 
     auto dof_map_subset = std::unique_ptr<NumLib::LocalToGlobalIndexMap>{
-        dof_map->deriveBoundaryConstrainedMap(1,  // variable id
-                                              0,  // component id
+        dof_map->deriveBoundaryConstrainedMap(1,    // variable id
+                                              {0},  // component id
                                               std::move(selected_component),
                                               some_elements)};
 
diff --git a/Tests/NumLib/LocalToGlobalIndexMapMultiComponent.cpp b/Tests/NumLib/LocalToGlobalIndexMapMultiComponent.cpp
index 09fc9070b4c3990879c52db5ca78662610b2c762..0c416f3679f6316743cdafa9bc6ba4690b4274af 100644
--- a/Tests/NumLib/LocalToGlobalIndexMapMultiComponent.cpp
+++ b/Tests/NumLib/LocalToGlobalIndexMapMultiComponent.cpp
@@ -77,7 +77,8 @@ public:
             delete e;
     }
 
-    void initComponents(const unsigned num_components, const unsigned selected_component,
+    void initComponents(const unsigned num_components,
+                        const int selected_component,
                         const NL::ComponentOrder order)
     {
         assert(selected_component < num_components);
@@ -97,7 +98,7 @@ public:
 
         dof_map_boundary.reset(dof_map->deriveBoundaryConstrainedMap(
             0,  // variable id
-            selected_component,
+            {selected_component},
             std::move(components_boundary),
             boundary_elements));
     }