Skip to content
This repository was archived by the owner on Nov 13, 2024. It is now read-only.

Commit 964ab02

Browse files
committed
Style: del useless code
1 parent e192874 commit 964ab02

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/service/system_file.ts

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -109,10 +109,9 @@ export default class FileManager {
109109
return await fs.writeFile(absPath, buf);
110110
}
111111

112-
async newFile(fileName: string){
113-
const target = this.toAbsolutePath(fileName)
114-
console.log(target)
115-
fs.createFile(target)
112+
async newFile(fileName: string) {
113+
const target = this.toAbsolutePath(fileName);
114+
fs.createFile(target);
116115
}
117116

118117
async copy(target1: string, target2: string) {

0 commit comments

Comments
 (0)