Skip to content
Snippets Groups Projects
Commit 6284cfbb authored by Evy Storozhenko's avatar Evy Storozhenko
Browse files

remove commented out function

parent d3b4aa73
Branches
No related tags found
No related merge requests found
Pipeline #186129 passed
...@@ -27,26 +27,6 @@ export interface Resolution { ...@@ -27,26 +27,6 @@ export interface Resolution {
}; };
} }
// export async function parseProtocol(
// path: string
// ): Promise<Protocol | string> {
// try {
// const fileContent = await fs.readFile(path, "utf-8");
// const basename = Path.basename(path);
// if (basename.startsWith("fvv-")) {
// return parseProtocol(fileContent, "fvv");
// } else if (basename.startsWith("fsr-")) {
// return fsr.parseProtocol(fileContent);
// } else {
// return `unknown file ${basename}`;
// }
// } catch (error) {
// console.log("Error for file", path, error);
// return String(error);
// }
// }
/** /**
* parses a german timestamp and returns the minutes. * parses a german timestamp and returns the minutes.
* *
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment