This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
Re: [patch] Fix declaration of BeanInfo constants
- From: Tom Tromey <tromey at redhat dot com>
- To: Jerry Quinn <jlquinn at optonline dot net>
- Cc: java-patches at gcc dot gnu dot org
- Date: 30 Jun 2004 17:04:24 -0600
- Subject: Re: [patch] Fix declaration of BeanInfo constants
- References: <E1BfoGP-0008HV-00@localhost>
- Reply-to: tromey at redhat dot com
Jerry> Make these constants match the JDK 1.4.2 docs.
Jerry> 2004-06-30 Jerry Quinn <jlquinn@optonline.net>
Jerry> * java/beans/BeanInfo (ICON_COLOR_16x16, ICON_COLOR_32x32,
Jerry> ICON_MONO_16x16, ICON_MONO_32x32): Make public static final.
A field in an interface is implicitly `public static final'.
Our coding standard is to omit the redundant modifiers.
So, these shouldn't be needed.
Tom