Skip to content

Commit a44a246

Browse files
alpslaclaude
andcommitted
fix(build): Remove java-tool-parser imports after file deletion
The java-tool-parser.ts file was removed as it was a duplicate/unused file, but the imports in parsers/index.ts were not updated. This caused build failures. Removed: - export { default as JavaToolParser } from './java-tool-parser'; - export type { JavaIssue, JavaToolResult } from './java-tool-parser'; The actual Java tool parsing is handled by JavaToolOrchestrator, not a separate parser. Fixes CI build error: TS2307 Cannot find module './java-tool-parser' 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 9352062 commit a44a246

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

  • packages/agents/src/two-branch/parsers

packages/agents/src/two-branch/parsers/index.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,4 @@ export { default as TypeScriptToolParser } from './typescript-tool-parser';
2424
export type { TypeScriptIssue, TypeScriptToolResult } from './typescript-tool-parser';
2525

2626
export { default as GoToolParser } from './go-tool-parser';
27-
export type { GoIssue, GoToolResult } from './go-tool-parser';
28-
29-
export { default as JavaToolParser } from './java-tool-parser';
30-
export type { JavaIssue, JavaToolResult } from './java-tool-parser';
27+
export type { GoIssue, GoToolResult } from './go-tool-parser';

0 commit comments

Comments
 (0)