[platform] //evaluation@license-url application info property was never used

GitOrigin-RevId: 44df7ab580d4e24090632a051ca4d9c4b6c0d049
This commit is contained in:
Roman Shevchenko
2021-06-22 15:38:44 +00:00
committed by intellij-monorepo-bot
parent dcaa222067
commit 9698d6fd11
3 changed files with 1 additions and 21 deletions
@@ -1,4 +1,4 @@
// Copyright 2000-2021 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
// Copyright 2000-2021 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
package com.intellij.openapi.application;
import com.intellij.openapi.util.BuildNumber;
@@ -64,8 +64,6 @@ public abstract class ApplicationInfo {
public abstract String getJetBrainsTvUrl();
public abstract String getEvalLicenseUrl();
public abstract String getKeyConversionUrl();
public abstract boolean hasHelp();
@@ -92,7 +92,6 @@ public final class ApplicationInfoImpl extends ApplicationInfoEx {
private final List<PluginId> essentialPluginsIds = new ArrayList<>();
private String myEventLogSettingsUrl = "https://resources.jetbrains.com/storage/fus/config/v4/%s/%s.json";
private String myJetBrainsTvUrl;
private String myEvalLicenseUrl = "https://www.jetbrains.com/store/license.html";
private String myKeyConversionUrl = "https://www.jetbrains.com/shop/eform/keys-exchange";
private String mySubscriptionFormId;
@@ -296,14 +295,6 @@ public final class ApplicationInfoImpl extends ApplicationInfoEx {
}
break;
case "evaluation": {
String url = getAttributeValue(child, "license-url");
if (url != null) {
myEvalLicenseUrl = url.trim();
}
}
break;
case "licensing": {
String url = getAttributeValue(child, "key-conversion-url");
if (url != null) {
@@ -731,11 +722,6 @@ public final class ApplicationInfoImpl extends ApplicationInfoEx {
return myJetBrainsTvUrl;
}
@Override
public String getEvalLicenseUrl() {
return myEvalLicenseUrl;
}
@Override
public String getKeyConversionUrl() {
return myKeyConversionUrl;
@@ -26,7 +26,6 @@
</xs:element>
<xs:element type="editorType" name="editor" minOccurs="0"/>
<xs:element type="pluginsType" name="plugins" minOccurs="0"/>
<xs:element type="evaluationType" name="evaluation" minOccurs="0"/>
<xs:element type="update-urlsType" name="update-urls" minOccurs="0"/>
<xs:element type="helpType" name="help" minOccurs="0"/>
<xs:element type="urlType" name="documentation" minOccurs="0"/>
@@ -501,9 +500,6 @@
<xs:attribute type="xs:string" name="win" use="required"/>
<xs:attribute type="xs:string" name="mac" use="required"/>
</xs:complexType>
<xs:complexType name="evaluationType">
<xs:attribute type="xs:string" name="license-url"/>
</xs:complexType>
<xs:complexType name="subscriptionsType">
<xs:attribute type="xs:string" name="formid"/>
<xs:attribute type="xs:string" name="news-key"/>