Skip to content

Commit 534a1a3

Browse files
committed
fix: removed logs
1 parent c49fb16 commit 534a1a3

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
"cpy-cli": "^3.0.0",
4343
"husky": "^4.0.7",
4444
"lerna": "^3.20.2",
45-
"nativescript-canvas": "2.1.15",
45+
"nativescript-canvas": "2.1.16",
4646
"nativescript-gesturehandler": "^0.1.4",
4747
"nativescript-tween": "0.0.5",
4848
"npm-watch": "^0.6.0",

plugin/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@
2525
"homepage": "https://github.com/Akylas/nativescript-chart",
2626
"readmeFilename": "README.md",
2727
"dependencies": {
28-
"nativescript-canvas": "2.1.15",
28+
"nativescript-canvas": "^2.1.16",
2929
"nativescript-gesturehandler": "^0.1.4",
30-
"nativescript-tween": "0.0.5",
30+
"nativescript-tween": "^0.0.5",
3131
"number-format.js": "^2.0.9"
3232
}
3333
}

src/charting/charts/Chart.ts

-2
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,6 @@ export abstract class Chart<U extends Entry, D extends IDataSet<U>, T extends Ch
149149
*/
150150
constructor() {
151151
super();
152-
console.log('constructor');
153152
this.init();
154153
}
155154

@@ -169,7 +168,6 @@ export abstract class Chart<U extends Entry, D extends IDataSet<U>, T extends Ch
169168
* initialize all paints and stuff
170169
*/
171170
protected init() {
172-
console.log('init');
173171
this.mAnimator = new ChartAnimator(() => {
174172
this.invalidate();
175173
});

0 commit comments

Comments
 (0)