File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed
Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 2020 * along with this code. If not, see <https://www.gnu.org/licenses/lgpl-3.0.html>.
2121 */
2222
23+ using BH . oM . Base . Attributes ;
24+
2325namespace BH . Engine . Adapters . Lusas
2426{
2527 public static partial class Modify
@@ -28,6 +30,7 @@ public static partial class Modify
2830 /**** Public Methods ****/
2931 /***************************************************/
3032
33+ [ ToBeRemoved ( "7.1" , "Method is no longer used or required." ) ]
3134 public static string RemovePrefix ( this string name , string forRemoval )
3235 {
3336 string adapterID ;
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ public static partial class Query
3535 /**** Public Methods ****/
3636 /***************************************************/
3737
38- public static List < Edge > GetDistinctEdges ( IEnumerable < Edge > edges )
38+ public static List < Edge > GetDistinctEdges ( this IEnumerable < Edge > edges )
3939 {
4040 List < Edge > distinctEdges = edges . GroupBy ( m => new
4141 {
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ public static partial class Query
3535 /**** Public Methods ****/
3636 /***************************************************/
3737
38- public static List < Point > GetDistinctPoints ( IEnumerable < Point > points )
38+ public static List < Point > GetDistinctPoints ( this IEnumerable < Point > points )
3939 {
4040 List < Point > distinctPoints = points . GroupBy ( m => new
4141 {
You can’t perform that action at this time.
0 commit comments