|
From: Florian B. <fl...@us...> - 2007-05-26 14:32:21
|
Update of /cvsroot/tritonus/tritonus/src/classes/org/tritonus/lowlevel/lame In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv24061/src/classes/org/tritonus/lowlevel/lame Modified Files: Lame.java Log Message: add annotations to suppress compiler warnings Direct links to online-CVS: http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/tritonus/tritonus/src/classes/org/tritonus/lowlevel/lame/Lame.java Index: Lame.java =================================================================== RCS file: /cvsroot/tritonus/tritonus/src/classes/org/tritonus/lowlevel/lame/Lame.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** Lame.java 13 Feb 2006 19:45:30 -0000 1.3 --- Lame.java 26 May 2007 14:32:14 -0000 1.4 *************** *** 41,44 **** --- 41,45 ---- // constants from lame.h private static final int MPEG_VERSION_2 = 0; // MPEG-2 + @SuppressWarnings("unused") // used from native private static final int MPEG_VERSION_1 = 1; // MPEG-1 private static final int MPEG_VERSION_2DOT5 = 2; // MPEG-2.5 *************** *** 104,108 **** * size of ints may be 64 bit. */ ! @SuppressWarnings("unused") private long m_lNativeGlobalFlags; --- 105,109 ---- * size of ints may be 64 bit. */ ! @SuppressWarnings("unused") // used from native private long m_lNativeGlobalFlags; |