Skip to content

Commit 7afae34

Browse files
remove comment
1 parent 2acb1c3 commit 7afae34

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

application/src/main/java/org/togetherjava/tjbot/commands/mathcommands/wolframalpha/Pod.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
88

99
import java.util.ArrayList;
10-
import java.util.Collection;
1110
import java.util.Collections;
1211
import java.util.List;
1312

application/src/main/java/org/togetherjava/tjbot/commands/mathcommands/wolframalpha/WolframAlphaCommandUtils.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ static byte[] imageToBytes(BufferedImage img) throws IOException {
3535
static BufferedImage combineImages(List<BufferedImage> images, int height) {
3636
int width =
3737
images.stream().mapToInt(BufferedImage::getWidth).max().orElse(Integer.MAX_VALUE);
38-
// height = images.stream().mapToInt(BufferedImage::getHeight).sum();
3938
BufferedImage image = new BufferedImage(width, height, BufferedImage.TYPE_4BYTE_ABGR);
4039
Graphics imgGraphics = image.getGraphics();
4140
imgGraphics.setColor(Color.WHITE);

0 commit comments

Comments
 (0)