From adea02b48bb9a77f0c347b4febbfa57952368420 Mon Sep 17 00:00:00 2001 From: Robinson Date: Sat, 25 Nov 2023 20:36:28 +0100 Subject: [PATCH] cleaned up parameter name --- src/dorkbox/notify/NotifyType.kt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/dorkbox/notify/NotifyType.kt b/src/dorkbox/notify/NotifyType.kt index d79fe23..36c5248 100755 --- a/src/dorkbox/notify/NotifyType.kt +++ b/src/dorkbox/notify/NotifyType.kt @@ -1,5 +1,5 @@ /* - * Copyright 2015 dorkbox, llc + * Copyright 2023 dorkbox, llc * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -170,9 +170,9 @@ internal interface NotifyType { /** * when using active rendering, we have to add it AFTER we have set the visibility status */ - fun updatePositionsPost(component: java.awt.Component, notify: NotifyType, visible: Boolean) { + fun updatePositionsPost(renderComponent: java.awt.Component, notify: NotifyType, visible: Boolean) { if (visible) { - SwingActiveRender.add(component) + SwingActiveRender.add(renderComponent) LAFUtil.addPopupToMap(notify) } }