Skip to content

Commit 51c3667

Browse files
author
David Hasani
committed
cleanup
1 parent 74832fb commit 51c3667

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

packages/core/src/codewhisperer/service/transformByQ/transformApiHandler.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -253,8 +253,7 @@ export async function uploadPayload(payloadFileName: string, uploadContext?: Upl
253253
*/
254254
const mavenExcludedExtensions = ['.repositories', '.sha1']
255255

256-
// TO-DO: should we exclude mvnw and mvnw.cmd?
257-
const sourceExcludedExtensions = ['.DS_Store', 'mvnw', 'mvnw.cmd']
256+
const sourceExcludedExtensions = ['.DS_Store']
258257

259258
/**
260259
* Determines if the specified file path corresponds to a Maven metadata file
@@ -363,7 +362,6 @@ export async function zipCode(
363362
sctFileName: metadataZip.getEntries().filter((entry) => entry.name.endsWith('.sct'))[0].name,
364363
},
365364
}
366-
// TO-DO: later consider making this add to path.join(zipManifest.dependenciesRoot, 'qct-sct-metadata', entry.entryName) so that it's more organized
367365
for (const entry of metadataZip.getEntries()) {
368366
zip.addFile(path.join(zipManifest.dependenciesRoot, entry.name), entry.getData())
369367
}
@@ -849,8 +847,6 @@ export function findDownloadArtifactProgressUpdate(transformationSteps: Transfor
849847
progressUpdates[j].status === 'AWAITING_CLIENT_ACTION' &&
850848
progressUpdates[j].downloadArtifacts?.[0]?.downloadArtifactId
851849
) {
852-
// TO-DO: make sure length is always 1
853-
console.log(`found progress update; length = ${progressUpdates[j].downloadArtifacts?.length}`)
854850
return progressUpdates[j]
855851
}
856852
}

0 commit comments

Comments
 (0)