Skip to content

Commit

Permalink
Merge pull request #4 from ulyssesrex/master
Browse files Browse the repository at this point in the history
Fix typos in Java System.out messages
  • Loading branch information
tbertinmahieux committed Sep 23, 2016
2 parents 4083937 + fa6e817 commit a354a15
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions JavaSrc/hdf5_getters.java
Original file line number Diff line number Diff line change
Expand Up @@ -573,8 +573,8 @@ public static void main(String[] args)
System.out.println("file: " + filename);
H5File h5 = hdf5_open_readonly(filename);
int nSongs = get_num_songs(h5);
System.out.println("numberof songs: " + nSongs);
if (nSongs > 1) System.out.println("we'll display infor for song 0");
System.out.println("number of songs: " + nSongs);
if (nSongs > 1) System.out.println("we'll display info for song 0");
try {
double[] res;
String[] resS;
Expand Down

0 comments on commit a354a15

Please sign in to comment.