Skip to content

Commit a2753da

Browse files
committed
audit visibility
1 parent 1af3b24 commit a2753da

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Sources/NIORedis/Coders/RedisDataDecoder.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import NIO
44
/// Handles incoming byte messages from Redis and decodes them according to the RESP protocol.
55
///
66
/// See: https://redis.io/topics/protocol
7-
final class RedisDataDecoder: ByteToMessageDecoder {
7+
internal final class RedisDataDecoder: ByteToMessageDecoder {
88
/// `ByteToMessageDecoder`
99
public typealias InboundOut = RedisData
1010

Sources/NIORedis/Coders/RedisDataEncoder.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import NIO
44
/// Handles outgoing `RedisData` on the wire by encoding it to the Redis RESP protocol.
55
///
66
/// See: https://redis.io/topics/protocol
7-
final class RedisDataEncoder: MessageToByteEncoder {
7+
internal final class RedisDataEncoder: MessageToByteEncoder {
88
/// See `MessageToByteEncoder.OutboundIn`
99
typealias OutboundIn = RedisData
1010

Sources/NIORedis/RedisError.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ import Foundation
22

33
/// Errors thrown while working with Redis.
44
public struct RedisError: CustomDebugStringConvertible, CustomStringConvertible, LocalizedError {
5-
public private(set) var description: String
6-
public private(set) var debugDescription: String
5+
public let description: String
6+
public let debugDescription: String
77

88
public init(
99
identifier: String,

0 commit comments

Comments
 (0)