Skip to content

Commit

Permalink
Remove redundent internal and public specifiers to allow for xcode 10…
Browse files Browse the repository at this point in the history
….2 compiling without warnings.
  • Loading branch information
tonystone committed Mar 30, 2019
1 parent 852c1aa commit 4f726a3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion Sources/StickyEncoding/DecodingError+Extensions.swift
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ import Swift
///
/// Extension encapsulating error messages and the context for `DecodingError`s.
///
internal
extension DecodingError {

// MARK: - `DecodingError.keyNotFound` errors.
Expand Down
6 changes: 3 additions & 3 deletions Sources/StickyEncoding/EncodedData.swift
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public class EncodedData {

/// Support to/from UnsafeRawBuffers.
///
public extension EncodedData {
extension EncodedData {

// MARK: UnsafeRawBufferPointer Support

Expand All @@ -99,7 +99,7 @@ public extension EncodedData {

/// Support to/from Array<UInt8>
///
public extension EncodedData {
extension EncodedData {

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

Expand All @@ -114,7 +114,7 @@ public extension EncodedData {

/// `Swift.Data` support for `EncodedData`.
///
public extension EncodedData {
extension EncodedData {

// MARK: `Swift.Data` Support

Expand Down

0 comments on commit 4f726a3

Please sign in to comment.