Skip to content

Commit 6e2fc97

Browse files
committed
Merge branch 'develop' into release/3.4
2 parents e6eb6dc + 7078615 commit 6e2fc97

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

WordPressUtils/src/main/java/org/wordpress/android/util/AppLog.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616
public class AppLog {
1717
// T for Tag
18-
public enum T {READER, EDITOR, MEDIA, NUX, API, STATS, UTILS, NOTIFS, DB, POSTS, COMMENTS, THEMES, TESTS, PROFILING, SIMPERIUM}
18+
public enum T {READER, EDITOR, MEDIA, NUX, API, STATS, UTILS, NOTIFS, DB, POSTS, COMMENTS, THEMES, TESTS, PROFILING, SIMPERIUM, SUGGESTION}
1919
public static final String TAG = "WordPress";
2020
public static final int HEADER_LINE_COUNT = 2;
2121

WordPressUtils/src/main/java/org/wordpress/android/util/ImageUtils.java

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -528,12 +528,6 @@ public static Bitmap getCircularBitmap(final Bitmap bitmap) {
528528
paint.setXfermode(new PorterDuffXfermode(PorterDuff.Mode.SRC_IN));
529529
canvas.drawBitmap(bitmap, rect, rect, paint);
530530

531-
// outline
532-
paint.setStyle(Paint.Style.STROKE);
533-
paint.setStrokeWidth(1f);
534-
paint.setColor(Color.DKGRAY);
535-
canvas.drawOval(rectF, paint);
536-
537531
return output;
538532
}
539533

0 commit comments

Comments
 (0)