diff --git a/Cognite.Simulator.Extensions/SequencesExtensions.cs b/Cognite.Simulator.Extensions/SequencesExtensions.cs index abd7f672..ef22465e 100644 --- a/Cognite.Simulator.Extensions/SequencesExtensions.cs +++ b/Cognite.Simulator.Extensions/SequencesExtensions.cs @@ -392,29 +392,6 @@ private static SequenceCreate GetSequenceCreatePrototype( } return seqCreate; } - - /// - /// Read the values of a and returns - /// it as a string array - /// - /// CDF Sequence row - /// Array containing the row values - public static string[] GetStringValues(this SequenceRow row) - { - var result = new List(); - foreach (var val in row.Values) - { - if (val != null && val.Type == MultiValueType.STRING) - { - result.Add(((MultiValue.String)val).Value); - } - else - { - result.Add(null); - } - } - return result.ToArray(); - } } ///