~ubuntu-branches/ubuntu/jaunty/electric/jaunty

« back to all changes in this revision

Viewing changes to com/sun/electric/tool/user/dialogs/PromptAt.java

  • Committer: Bazaar Package Importer
  • Author(s): Onkar Shinde
  • Date: 2009-01-08 02:05:08 UTC
  • mfrom: (1.1.2 upstream) (3.1.4 sid)
  • Revision ID: james.westby@ubuntu.com-20090108020508-0h3li7zt9mu5gf0i
Tags: 8.08-1
New upstream version.

Show diffs side-by-side

added added

removed removed

Lines of Context:
104
104
                public Field(String label, boolean initial)
105
105
                {
106
106
                        this.label = label;
107
 
                        this.initial = new Boolean(initial);
 
107
                        this.initial = Boolean.valueOf(initial);
108
108
                        this.finalValue = this.initial;
109
109
                        this.type = FIELD_BOOL;
110
110
                }