Skip to content

Commit 05d2ce2

Browse files
committed
Remove print statements
1 parent 5506bcf commit 05d2ce2

File tree

8 files changed

+12
-8
lines changed

8 files changed

+12
-8
lines changed

Sources/MusicXML/Complex Types/Credit.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,8 @@ extension Credit {
6262
public let links: [Link]
6363
public let bookmark: [Bookmark]
6464

65-
// MARK: - Initializers
65+
// MARK: - Initializers
66+
6667
// MARK: - Initializers
6768

6869
public init(words: FormattedText, links: [Link], bookmark: [Bookmark]) {

Sources/MusicXML/Complex Types/KeyOctave.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public struct KeyOctave {
1919
/// If the cancel attribute is set to yes, then this number refers to an element specified by
2020
/// the cancel element. It is no by default.
2121
public let cancel: Bool
22-
22+
2323
// MARK: Value
2424

2525
/// The content specifies the octave value using the same values as the display-octave element.

Sources/MusicXML/Complex Types/Note.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public struct Note {
3030
// MARK: Attribute Groups
3131

3232
public let printStyle: PrintStyle
33-
33+
3434
// MARK: Elements
3535

3636
public let instrument: Instrument?
@@ -49,7 +49,7 @@ public struct Note {
4949
public let notations: Notations?
5050
public let lyrics: [Lyric]
5151
public let play: Play?
52-
52+
5353
// MARK: Kind
5454

5555
public let kind: Kind

Sources/MusicXML/Complex Types/NoteType.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ public struct NoteType {
1212
// MARK: Attributes
1313

1414
public let size: SymbolSize?
15-
15+
1616
// MARK: Value
1717

1818
public let value: NoteTypeValue

Sources/MusicXML/Complex Types/Offset.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public struct Offset {
1515
// MARK: Attributes
1616

1717
public let sound: Bool?
18-
18+
1919
// MARK: Value
2020

2121
public let value: Divisions

Sources/MusicXML/Complex Types/ScorePart.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,8 @@ extension ScorePart {
103103
/// affected by the change.
104104
public let midiInstrument: MIDIInstrument?
105105

106-
// MARK: - Initializers
106+
// MARK: - Initializers
107+
107108
// MARK: - Initializers
108109

109110
public init(midiDevice: MIDIDevice? = nil, midiInstrument: MIDIInstrument? = nil) {

Sources/MusicXML/Complex Types/Slash.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ extension Slash: Codable {
6666
}
6767

6868
// MARK: - Initializers
69+
6970
// MARK: - Initializers
7071

7172
// MARK: Decodable

Sources/MusicXML/Complex Types/Sound.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,8 @@ extension Sound {
9898
/// note element, it applies to the current note only.
9999
public let play: Play?
100100

101-
// MARK: - Initializers
101+
// MARK: - Initializers
102+
102103
// MARK: - Initializers
103104

104105
public init(midiDevice: MIDIDevice? = nil, midiInstrument: MIDIInstrument? = nil, play: Play? = nil) {

0 commit comments

Comments
 (0)