From b26dbe81f42cebc4dc9e62e664e109b368361a17 Mon Sep 17 00:00:00 2001 From: Karl Tauber Date: Tue, 1 Jun 2021 16:23:54 +0200 Subject: [PATCH] README.md: changed deprecated `FlatLightLaf.install()` to `FlatLightLaf.setup()` --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8e8669eb..79a647b5 100644 --- a/README.md +++ b/README.md @@ -76,11 +76,11 @@ Addons Getting started --------------- -To enable FlatLaf, add following code to your main method before you create any +To use FlatLaf, add following code to your main method before you create any Swing component: ~~~java -FlatLightLaf.install(); +FlatLightLaf.setup(); // create UI here... ~~~