summaryrefslogtreecommitdiff
path: root/pdf-over-gui/src/main/java/at/asit/pdfover/gui/PlaceholderSelectionGui.java
diff options
context:
space:
mode:
authorJakob Heher <jakob.heher@iaik.tugraz.at>2022-07-06 13:13:43 +0200
committerJakob Heher <jakob.heher@iaik.tugraz.at>2022-07-06 13:13:43 +0200
commit023e5398387cbe0869c1c47cb3f2914dfab623d3 (patch)
treeed575dc45b62c74406b36c7bb8618a5550e248b0 /pdf-over-gui/src/main/java/at/asit/pdfover/gui/PlaceholderSelectionGui.java
parent82c045d786ef4a0728c1e89fb365afda81aef303 (diff)
downloadpdf-over-023e5398387cbe0869c1c47cb3f2914dfab623d3.tar.gz
pdf-over-023e5398387cbe0869c1c47cb3f2914dfab623d3.tar.bz2
pdf-over-023e5398387cbe0869c1c47cb3f2914dfab623d3.zip
more lambda refactors
Diffstat (limited to 'pdf-over-gui/src/main/java/at/asit/pdfover/gui/PlaceholderSelectionGui.java')
-rw-r--r--pdf-over-gui/src/main/java/at/asit/pdfover/gui/PlaceholderSelectionGui.java4
1 files changed, 0 insertions, 4 deletions
diff --git a/pdf-over-gui/src/main/java/at/asit/pdfover/gui/PlaceholderSelectionGui.java b/pdf-over-gui/src/main/java/at/asit/pdfover/gui/PlaceholderSelectionGui.java
index c00fa151..0aaf52a6 100644
--- a/pdf-over-gui/src/main/java/at/asit/pdfover/gui/PlaceholderSelectionGui.java
+++ b/pdf-over-gui/src/main/java/at/asit/pdfover/gui/PlaceholderSelectionGui.java
@@ -111,11 +111,8 @@ public class PlaceholderSelectionGui extends Dialog {
this.btnCancel.addSelectionListener(new SelectionAdapter() {
@Override
public void widgetSelected(SelectionEvent e) {
-
-
PlaceholderSelectionGui.this.returnValue = -1;
PlaceholderSelectionGui.this.shlInfo.dispose();
-
}
});
this.btnCancel.setBounds(175, 118, 75, 25);
@@ -126,7 +123,6 @@ public class PlaceholderSelectionGui extends Dialog {
this.btnOk.addSelectionListener(new SelectionAdapter() {
@Override
public void widgetSelected(SelectionEvent e) {
-
PlaceholderSelectionGui.this.returnValue = PlaceholderSelectionGui.this.placeholderNameDropDown.getSelectionIndex();
PlaceholderSelectionGui.this.shlInfo.dispose();
}