Skip to content

Commit

Permalink
review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
azvegint committed Sep 22, 2023
1 parent 69a125f commit abece69
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion test/jdk/java/awt/Frame/DefaultSizeTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
* @run main/manual DefaultSizeTest
*/

public class DefaultSizeTest {
public class DefaultSizeTest {

private static final String INSTRUCTIONS = """
An empty frame is created.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public void paint(Graphics g) {
int y = 10;
for(int i = 0; i < 30; i++) {
g.drawString("Lightweight: Java version: " + version +
", Vendor: " + vendor, 10, y += 20);
", Vendor: " + vendor, 10, y += 20);
}
g.setColor(c);
g.setClip(clip);
Expand Down
2 changes: 1 addition & 1 deletion test/jdk/java/awt/event/KeyEvent/FunctionKeyTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ public static void main(String[] args) throws Exception {

class FunctionKeyTester extends Frame {
Label l = new Label ("NULL");
Button b = new Button ();
Button b = new Button();
TextArea log = new TextArea();

FunctionKeyTester() {
Expand Down

0 comments on commit abece69

Please sign in to comment.