Skip to content

Commit c21a1df

Browse files
author
Chris Bellew
committed
Fix build.gradle file to prevent warning.
1 parent a35fefb commit c21a1df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Voice Control For Plex/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ gradle.taskGraph.whenReady { taskGraph ->
5959
) {
6060
vbox { // Put everything below each other
6161
label(text: "!Please enter key passphrase:")
62-
input = passwordField()
62+
def input = passwordField()
6363
button(defaultButton: true, text: 'OK', actionPerformed: {
6464
pass = new String(input.password); // Set pass variable to value of input field
6565
dispose(); // Close dialog

0 commit comments

Comments
 (0)