1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-21 09:38:01 +02:00

Chore: remove debug code

This commit is contained in:
Laurent Cozic 2020-12-23 23:46:36 +00:00
parent 5dc3baa50c
commit 502c812d9c

View File

@ -7,7 +7,6 @@ export default function convertToScreenCoordinates(o: any): any {
if (typeof o === 'object' && o !== null) {
o = JSON.parse(JSON.stringify(o));
console.info('K', Object.keys(o));
for (const k of Object.keys(o)) {
o[k] = convertToScreenCoordinates(o[k]);
}