Skip to content

Commit

Permalink
Merge pull request #14 from DevFactory/release/multiple-quality-impro…
Browse files Browse the repository at this point in the history
…vements-fix-1

Multiple quality improvements
  • Loading branch information
antwankakki authored Jun 30, 2016
2 parents bc19177 + 5c36d10 commit 1e9ec61
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* Created by antwan on 10/3/2015.
*/
public class CPath implements CDrawable {
private int x, y, height, width;
private int x, y;
private Path mPath;
private Paint mPaint;
private int mRotDegree;
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/com/agsw/FabricView/FabricView.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public class FabricView extends View {
/************************************* Vars *******************************************/
/*********************************************************************************************/
// painting objects and properties
private ArrayList<CDrawable> mDrawableList = new ArrayList<CDrawable>();
private ArrayList<CDrawable> mDrawableList = new ArrayList<>();
private int mColor = Color.BLACK;

// Canvas interaction modes
Expand All @@ -50,7 +50,7 @@ public class FabricView extends View {
private int mBackgroundMode = BACKGROUND_STYLE_BLANK;

// Default Notebook left line color
public int NOTEBOOK_LEFT_LINE_COLOR = Color.RED;
public static final int NOTEBOOK_LEFT_LINE_COLOR = Color.RED;

// Flag indicating that we are waiting for a location for the text
private boolean mTextExpectTouch;
Expand Down

0 comments on commit 1e9ec61

Please sign in to comment.