From 8cc174badd0d579e1eb3a4b2014dab143407a63c Mon Sep 17 00:00:00 2001 From: bculkin2442 Date: Sun, 14 Oct 2018 12:34:46 -0400 Subject: Formatting --- src/bjc/imgchain/ImgPipeline.java | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'src/bjc/imgchain/ImgPipeline.java') diff --git a/src/bjc/imgchain/ImgPipeline.java b/src/bjc/imgchain/ImgPipeline.java index ff67679..d009ecc 100644 --- a/src/bjc/imgchain/ImgPipeline.java +++ b/src/bjc/imgchain/ImgPipeline.java @@ -4,7 +4,6 @@ import java.awt.BorderLayout; import java.awt.GridLayout; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; -import java.text.MessageFormat; import javax.swing.DefaultListModel; import javax.swing.JButton; @@ -15,7 +14,6 @@ import javax.swing.JPanel; import javax.swing.JScrollPane; import javax.swing.JSplitPane; import javax.swing.border.BevelBorder; -import javax.swing.border.CompoundBorder; import javax.swing.border.TitledBorder; import bjc.imgchain.pipeline.MutablePipeline; @@ -86,8 +84,7 @@ public class ImgPipeline extends JInternalFrame { JList stageList = new JList<>(mod); stageList.addListSelectionListener(e -> { - if (e.getValueIsAdjusting()) - return; + if (e.getValueIsAdjusting()) return; PipelineStage stag = stageList.getSelectedValue(); @@ -145,8 +142,9 @@ public class ImgPipeline extends JInternalFrame { break; case "Sepia": { /* - * NOTE: these values were pulled from somewhere on the internet, and tweaked - * slightly to work better. + * NOTE: these values were pulled from + * somewhere on the internet, and + * tweaked slightly to work better. */ stag = new ColorSkewStage(.393, .769, .189, .349, .686, .168, .272, .534, .131); } -- cgit v1.2.3