Skip to content

Commit c979f49

Browse files
committed
Minor changes
1 parent 2226168 commit c979f49

File tree

2 files changed

+1
-4
lines changed
  • rocket-chatter-ingestion-server/src

2 files changed

+1
-4
lines changed

rocket-chatter-ingestion-server/src/core/dbNode.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { TreeNode } from "../process/prepare/processor/core/treeNode"
22
import { LLM } from "./llm"
33

4-
export type DBNodeRelation = "IN_FILE" | "USES"
4+
export type DBNodeRelation = "CONTAINS" | "USES"
55

66
export class DBNode {
77
id: string

rocket-chatter-ingestion-server/src/process/prepare/processor/file.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ export class FileProcessor implements IFileProcessor {
6464
const currentFileDirectory = sourceFile
6565
.getFullPath()
6666
.slice(0, sourceFile.getFullPath().lastIndexOf("/"))
67-
console.log(currentFileDirectory)
6867

6968
let finalPath = ""
7069
const backSteps = relativePath.match(/\.\.\//g)
@@ -84,8 +83,6 @@ export class FileProcessor implements IFileProcessor {
8483
.replaceAll("\\", "/")
8584
}
8685

87-
console.log(relativePath, finalPath)
88-
8986
parsedImports.set(importName, finalPath)
9087
}
9188
}

0 commit comments

Comments
 (0)