Skip to content
Open
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
8 changes: 0 additions & 8 deletions lib/src/guid.dart
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,6 @@ class Guid {
Guid.empty() : this._internal(new List.filled(16, 0));

static List<int> _fromMacString(String input) {
if (input == null) {
throw new ArgumentError("Input was null");
}

input = _removeNonHexCharacters(input);
final bytes = hex.decode(input);

Expand All @@ -34,10 +30,6 @@ class Guid {
}

static List<int> _fromString(String input) {
if (input == null) {
throw new ArgumentError("Input was null");
}

input = _removeNonHexCharacters(input);
final bytes = hex.decode(input);

Expand Down