Skip to content

Commit a1e0676

Browse files
committed
Gave more appropriate names to the two ImageProcesses I just wrote
1 parent 684936f commit a1e0676

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

GrayConverter.java GrayConvertProcess.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
* @author Christopher Sasarak
99
*/
10-
public class GrayConverter implements ImageProcess{
10+
public class GrayConvertProcess implements ImageProcess{
1111
/**
1212
* This method will make an image GrayScale.
1313
*

Monoscaler.java MonoscaleProcess.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import javax.media.jai.*;
77
import java.awt.image.RenderedImage;
88

9-
public class Monoscaler implements ImageProcess {
9+
public class MonoscaleProcess implements ImageProcess {
1010
/**
1111
* This method accepts a RenderedImage and converts it to
1212
* binary.

0 commit comments

Comments
 (0)