Skip to content

Commit

Permalink
src: Delete unnecessary console.log()s I inadvertently committed
Browse files Browse the repository at this point in the history
  • Loading branch information
DeeDeeG committed May 29, 2024
1 parent 8cad772 commit 94f29df
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/package-converter.js
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,6 @@ class PackageConverter {

readFileSync(filePath) {
if (_.contains(this.plistExtensions, path.extname(filePath))) {
console.log(plist.parse(fs.readFileSync(filePath, 'utf8')));
return plist.parse(fs.readFileSync(filePath, 'utf8'));
} else if (_.contains(['.json', '.cson'], path.extname(filePath))) {
return CSON.readFileSync(filePath);
Expand All @@ -137,7 +136,6 @@ class PackageConverter {
let contents;
if (_.contains(this.plistExtensions, path.extname(sourcePath))) {
contents = plist.parse(fs.readFileSync(sourcePath, 'utf8'));
console.log(contents);
} else if (_.contains(['.json', '.cson'], path.extname(sourcePath))) {
contents = CSON.readFileSync(sourcePath);
}
Expand Down

0 comments on commit 94f29df

Please sign in to comment.