summaryrefslogtreecommitdiff
path: root/src/bjc/imgchain/ImgPipeline.java
diff options
context:
space:
mode:
authorbculkin2442 <bjculkin@mix.wvu.edu>2018-10-14 12:34:46 -0400
committerbculkin2442 <bjculkin@mix.wvu.edu>2018-10-14 12:34:46 -0400
commit8cc174badd0d579e1eb3a4b2014dab143407a63c (patch)
tree7b8c3ea71f79f847f7163e142b6b3123386d96b1 /src/bjc/imgchain/ImgPipeline.java
parent29302c7668151c4eec104379815340754982a4f3 (diff)
Formatting
Diffstat (limited to 'src/bjc/imgchain/ImgPipeline.java')
-rw-r--r--src/bjc/imgchain/ImgPipeline.java10
1 files changed, 4 insertions, 6 deletions
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<PipelineStage> 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);
}