1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-15 15:53:27 +00:00

Remove all TypeScript region use as it is now against the Bitwarden code style guide. (#5356)

This commit is contained in:
Jared Snider
2023-05-04 10:48:01 -04:00
committed by GitHub
parent f06c017e42
commit 120fd14213
4 changed files with 20 additions and 29 deletions

View File

@@ -27,7 +27,7 @@ export enum HttpStatusCode {
Processing = 102,
// **********************************************************************************************************
//#region 200s - SUCCESS
// 200s - SUCCESS
// **********************************************************************************************************
/**
@@ -92,10 +92,8 @@ export enum HttpStatusCode {
*/
ImUsed = 226,
// #endregion
// **********************************************************************************************************
//#region 300s - Redirections
// 300s - Redirections
// **********************************************************************************************************
/**
@@ -161,10 +159,8 @@ export enum HttpStatusCode {
*/
PermanentRedirect = 308,
// #endregion
// **********************************************************************************************************
// #region - 400s - Client / User messed up
// 400s - Client / User messed up
// **********************************************************************************************************
/**
@@ -335,10 +331,8 @@ export enum HttpStatusCode {
*/
UnavailableForLegalReasons = 451,
// #endregion
// **********************************************************************************************************
// #region - 500s - Serve messed up
// 500s - Server messed up
// **********************************************************************************************************
/**
@@ -399,5 +393,4 @@ export enum HttpStatusCode {
* to require agreement to Terms of Service before granting full Internet access via a Wi-Fi hotspot).
*/
NetworkAuthenticationRequired = 511,
// #endregion
}