On Thu, 26 Nov 2020 17:01:16 GMT, skodanda <github.com+70650887+skoda...@openjdk.org> wrote:
> Hi All, Could you please review this fix for JDK16? > > Problem Description: Automate bug4275046.java test. > > Fix: This fix includes rewriting the applet based test to a regular java > application and its been automated too. Changes requested by aivanov (Reviewer). test/jdk/javax/swing/JTable/4275046/bug4275046.java line 179: > 177: editedValue = table.getModel().getValueAt(0, 1); > 178: System.out.println("The edited value is = " + editedValue); > 179: testResult = editedValue.equals(EXPECTED_VALUE); The indentation is wrong: the body of the method must be indented by four spaces. There are other misindented blocks; maybe it's because of the tabs in the file. Please correct indentation. ------------- PR: https://git.openjdk.java.net/jdk/pull/1462