Skip to content

Commit

Permalink
FormView.java : Adds missing space in a while statement. Updates Copy…
Browse files Browse the repository at this point in the history
…right year.
  • Loading branch information
scientificware committed Aug 17, 2023
1 parent 1d8daa9 commit e6308e0
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 1998, 2022, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1998, 2023, Oracle and/or its affiliates. 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
Expand Down Expand Up @@ -44,7 +44,6 @@
import javax.swing.ButtonModel;
import javax.swing.ComboBoxModel;
import javax.swing.DefaultButtonModel;
import javax.swing.Icon;
import javax.swing.ImageIcon;
import javax.swing.JButton;
import javax.swing.JCheckBox;
Expand Down Expand Up @@ -941,7 +940,7 @@ void resetForm() {
ElementIterator it = new ElementIterator(parent);
Element next;

while((next = it.next()) != null) {
while ((next = it.next()) != null) {
if (isControl(next)) {
AttributeSet elemAttr = next.getAttributes();
Object m = elemAttr.getAttribute(StyleConstants.
Expand Down

0 comments on commit e6308e0

Please sign in to comment.