8000 fix format · coder0728/glide-transformations@1264e01 · GitHub
[go: up one dir, main page]

Skip to content

Commit 1264e01

Browse files
committed
fix format
1 parent 1a474cd commit 1264e01

File tree

1 file changed

+4
-4
lines changed
  • transformations/src/main/java/jp/wasabeef/glide/transformations/internal

1 file changed

+4
-4
lines changed

transformations/src/main/java/jp/wasabeef/glide/transformations/internal/RSBlur.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public static Bitmap blur(Context context, Bitmap bitmap, int radius) throws RSR
3838
rs = RenderScript.create(context);
3939
rs.setMessageHandler(new RenderScript.RSMessageHandler());
4040
input = Allocation.createFromBitmap(rs, bitmap, Allocation.MipmapControl.MIPMAP_NONE,
41-
Allocation.USAGE_SCRIPT);
41+
Allocation.USAGE_SCRIPT);
4242
output = Allocation.createTyped(rs, input.getType());
4343
blur = ScriptIntrinsicBlur.create(rs, Element.U8_4(rs));
4444

@@ -51,13 +51,13 @@ public static Bitmap blur(Context context, Bitmap bitmap, int radius) throws RSR
5151
rs.destroy();
5252
}
5353
if (input != null) {
54-
input.destroy();
54+
input.destroy();
5555
}
5656
if (output != null) {
57-
output.destroy();
57+
output.destroy();
5858
}
5959
if (blur != null) {
60-
blur.destroy();
60+
blur.destroy();
6161
}
6262
}
6363

0 commit comments

Comments
 (0)
0