# HG changeset patch # User amenkov # Date 1242208372 -14400 # Node ID 22d903fd3c5ecaffb6fdcbe34ab3d46c907cfbe7 # Parent 2f08a8bb9b83ec11a05b0fd9e74eb71f12c5e7cd 6657625: RmfFileReader/StandardMidiFileWriter.types are public mutable statics (findbugs) Reviewed-by: hawtin diff -r 2f08a8bb9b83 -r 22d903fd3c5e jdk/src/share/classes/com/sun/media/sound/StandardMidiFileWriter.java --- a/jdk/src/share/classes/com/sun/media/sound/StandardMidiFileWriter.java Tue May 12 16:32:34 2009 +0100 +++ b/jdk/src/share/classes/com/sun/media/sound/StandardMidiFileWriter.java Wed May 13 13:52:52 2009 +0400 @@ -1,5 +1,5 @@ /* - * Copyright 1999-2007 Sun Microsystems, Inc. All Rights Reserved. + * Copyright 1999-2009 Sun Microsystems, Inc. All Rights Reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -82,7 +82,7 @@ /** * MIDI parser types */ - public static final int types[] = { + private static final int types[] = { MIDI_TYPE_0, MIDI_TYPE_1 };