Correct order of constants

This commit is contained in:
Klaus Reimer 2013-04-12 21:30:20 +02:00
parent 9d67714736
commit 9eedfc8e04

View File

@ -22,9 +22,6 @@ import java.nio.IntBuffer;
*/
public final class LibUSB
{
/** The maximum size of a string (Unicode). */
private static final int MAX_STRING_SIZE = 126;
// Log message levels.
/** No messages ever printed by the library (default). */
@ -456,6 +453,9 @@ public final class LibUSB
/** Device sent more data than requested. */
public static final int TRANSFER_OVERFLOW = 6;
/** The maximum size of a string (Unicode). */
private static final int MAX_STRING_SIZE = 126;
/** The currently set pollfd listener. */
private static PollfdListener pollfdListener;