Skip to content

Commit 4f726a3

Browse files
committed
Remove redundent internal and public specifiers to allow for xcode 10.2 compiling without warnings.
1 parent 852c1aa commit 4f726a3

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

Sources/StickyEncoding/DecodingError+Extensions.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ import Swift
2323
///
2424
/// Extension encapsulating error messages and the context for `DecodingError`s.
2525
///
26-
internal
2726
extension DecodingError {
2827

2928
// MARK: - `DecodingError.keyNotFound` errors.

Sources/StickyEncoding/EncodedData.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ public class EncodedData {
7575

7676
/// Support to/from UnsafeRawBuffers.
7777
///
78-
public extension EncodedData {
78+
extension EncodedData {
7979

8080
// MARK: UnsafeRawBufferPointer Support
8181

@@ -99,7 +99,7 @@ public extension EncodedData {
9999

100100
/// Support to/from Array<UInt8>
101101
///
102-
public extension EncodedData {
102+
extension EncodedData {
103103

104104
// MARK: Byte Array ([UInt8]) Support
105105

@@ -114,7 +114,7 @@ public extension EncodedData {
114114

115115
/// `Swift.Data` support for `EncodedData`.
116116
///
117-
public extension EncodedData {
117+
extension EncodedData {
118118

119119
// MARK: `Swift.Data` Support
120120

0 commit comments

Comments
 (0)