Date: Thu, 22 Mar 2001 15:29:09 -0500 From: "Brian J. Sletten" <brian@parabon.com> To: Todd Enersen <tee@fireclick.com> Cc: freebsd-java@freebsd.org Subject: Re: possible bug in port of javac Message-ID: <3ABA6095.E89C78EC@parabon.com> References: <3ABA5AC3.CA8F09DD@fireclick.com>
next in thread | previous in thread | raw e-mail | index | archive | help
I *MEANT*: I'm assuming that you are trying to assign this value from a property or something. Do you need it as a final instance variable? If the same value is going to be valid for every *INSTANCE*, try something like: public class A { private static final int m_maxValuesPerName = Integer.getInteger( "foo.maxValuesPerName", 5 ).intValue(); } Sorry. -- I don't want to achieve immortality through my work. I want to achieve it through not dying. -- Woody Allen To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?3ABA6095.E89C78EC>