Skip to content

Commit 788f69d

Browse files
committed
Fix warning with default for RESPValue.description implementation.
1 parent d458492 commit 788f69d

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

Sources/RedisNIO/RESP/RESPValue.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,6 @@ extension RESPValue: CustomStringConvertible {
9090
case .null: return "NULL"
9191
case let .array(elements): return "[\(elements.map({ $0.description }).joined(separator: ","))]"
9292
case let .error(e): return e.message
93-
default: return ""
9493
}
9594
}
9695
}

0 commit comments

Comments
 (0)