1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-11 05:53:42 +00:00

Remove outdated comments

This commit is contained in:
Nik Gilmore
2025-12-31 15:51:58 -08:00
parent a670fe6269
commit 49b17e5410
2 changed files with 0 additions and 4 deletions

View File

@@ -905,8 +905,6 @@ export class CipherService implements CipherServiceAbstraction {
}
}
// TODO: Find a cleaner way to do this to replace the existing `createWitHServer`
// - should we do a new SErvice, or hijack existing service & change interfaces??
private async createWithServer_sdk(
cipherView: CipherView,
userId: UserId,
@@ -968,7 +966,6 @@ export class CipherService implements CipherServiceAbstraction {
originalCipherView?: CipherView,
orgAdmin?: boolean,
): Promise<CipherView> {
// const sdkCipherEncryptionEnabled = false;
const sdkCipherEncryptionEnabled = await this.configService.getFeatureFlag(
FeatureFlag.PM27632_SdkCipherCrudOperations,
);

View File

@@ -71,7 +71,6 @@ export class DefaultCipherFormService implements CipherFormService {
originalCipherView,
config.admin,
);
// Temporary
savedCipher = await this.cipherService
.encrypt(savedCipherView, activeUserId)
.then((res) => res.cipher);