1
0
Fork 0
forked from len0rd/rockbox

A bit of cleanup.

Replace // with /* */ style comments
Cleanup copy&paste from the doc examples.
Don't pretend to handle exception we don't handle actually.
cleanup imports

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27754 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Thomas Martitz 2010-08-08 16:44:06 +00:00
parent 4aa3d01066
commit 4a3e6dbe8f
5 changed files with 52 additions and 56 deletions

View file

@ -138,7 +138,7 @@ public class RockboxPCM extends AudioTrack
}
@Override
public void onMarkerReached(AudioTrack track) {
// push new data to the hardware
/* push new data to the hardware */
RockboxPCM pcm = (RockboxPCM)track;
int result = -1;
pcm.pcmSamplesToByteArray(buf);
@ -169,8 +169,7 @@ public class RockboxPCM extends AudioTrack
@Override
public void onPeriodicNotification(AudioTrack track) {
// TODO Auto-generated method stub
// TODO Auto-generated method stub
}
}
}