Skip to content

Commit

Permalink
access rebuilt
Browse files Browse the repository at this point in the history
  • Loading branch information
khjxiaogu committed Aug 8, 2020
1 parent e616cb6 commit bb4cf1c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/com/khjxiaogu/MCMidi/Midi/MidiSheet.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

public class MidiSheet implements ConfigurationSerializable {
public List<NoteTrack> tracks = new ArrayList<>();
private static int MsPerGameTick = 50;
private final static int MsPerGameTick = 50;

public MidiSheet(File f, int offset, float speed) throws InvalidMidiDataException, IOException {
Sequence sequence;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/khjxiaogu/MCMidi/Midi/NoteTrack.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
import com.khjxiaogu.MCMidi.Midi.Players.TrackPlayer;

public class NoteTrack implements ConfigurationSerializable {
List<NoteInfo> notes = new ArrayList<>();
public final List<NoteInfo> notes = new ArrayList<>();

public List<NoteInfo> getNotes() {
return notes;
Expand Down

0 comments on commit bb4cf1c

Please sign in to comment.