diff options
author | Wouter Admiraal <wouter.admiraal@sonarsource.com> | 2021-08-19 15:03:11 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2021-08-20 20:03:09 +0000 |
commit | 2d0873e027ff54dbb470c46b76b04f98caa48384 (patch) | |
tree | 38b6704ddd0cfddfca4ef35fbe95caf259b17790 /server/sonar-web/src/main/js/app/index.ts | |
parent | 6f17541395dcedb52fe54e7755be95f2e5941086 (diff) | |
download | sonarqube-2d0873e027ff54dbb470c46b76b04f98caa48384.tar.gz sonarqube-2d0873e027ff54dbb470c46b76b04f98caa48384.zip |
SONAR-15297 Remove all sonar-ui-common initialization logic
Diffstat (limited to 'server/sonar-web/src/main/js/app/index.ts')
-rw-r--r-- | server/sonar-web/src/main/js/app/index.ts | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/server/sonar-web/src/main/js/app/index.ts b/server/sonar-web/src/main/js/app/index.ts index cd7c28a8d01..8ceaf92f55f 100644 --- a/server/sonar-web/src/main/js/app/index.ts +++ b/server/sonar-web/src/main/js/app/index.ts @@ -18,14 +18,11 @@ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ import { installExtensionsHandler, installWebAnalyticsHandler } from '../helpers/extensionsHandler'; -import SonarUiCommonInitializer from '../helpers/init'; import { loadL10nBundle } from '../helpers/l10n'; import { parseJSON, request } from '../helpers/request'; import { getBaseUrl, getSystemStatus } from '../helpers/system'; import './styles/sonar.css'; -SonarUiCommonInitializer.setUrlContext(getBaseUrl()); - installWebAnalyticsHandler(); if (isMainApp()) { |