From ceab9f3248fa1a5ea5789d1d40d3928ca2596f6f Mon Sep 17 00:00:00 2001 From: Sergey Bylokhov Date: Mon, 2 Nov 2020 12:26:15 +0000 Subject: [PATCH] 6816284: Notepad class should be public Reviewed-by: pbansal --- src/demo/share/jfc/Notepad/Notepad.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/demo/share/jfc/Notepad/Notepad.java b/src/demo/share/jfc/Notepad/Notepad.java index 3ebe3f07d22..cb4552f94cf 100644 --- a/src/demo/share/jfc/Notepad/Notepad.java +++ b/src/demo/share/jfc/Notepad/Notepad.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1997, 2020, Oracle and/or its affiliates. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -60,7 +60,7 @@ import javax.swing.UIManager.LookAndFeelInfo; * @author Timothy Prinzing */ @SuppressWarnings("serial") -class Notepad extends JPanel { +public class Notepad extends JPanel { protected static Properties properties; private static ResourceBundle resources;