Skip to content

Commit bed4017

Browse files
committed
refactor
1 parent cd56672 commit bed4017

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/ImageLoader.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ public ImageData[] load(InputStream stream) {
187187
* @since 3.129
188188
*/
189189
public ImageData[] load(InputStream stream, int zoom) {
190-
if (stream == null) SWT.error(SWT.ERROR_NULL_ARGUMENT);
190+
if (stream == null) SWT.error(SWT.ERROR_NULL_ARGUMENT);
191191
reset();
192192
data = FileFormat.load(stream, zoom, this);
193193
return data;

bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/internal/SVGRasterizer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public interface SVGRasterizer {
3131
* not be 0.
3232
* @return the {@link ImageData} for the rasterized image, or {@code null} if
3333
* the input is not a valid SVG file or cannot be processed.
34-
* @throws IOException if an error occurs while reading the SVG data.
34+
* @throws IOException
3535
*/
3636
public ImageData[] rasterizeSVG(InputStream stream, int zoom) throws IOException;
3737
}

0 commit comments

Comments
 (0)