[copyright] remove a small bit of unused code

GitOrigin-RevId: 146fd19d71fb34b9470e66fd0d886931b288e809
This commit is contained in:
Bas Leijdekkers
2023-10-12 15:17:55 +02:00
committed by intellij-monorepo-bot
parent c53db40632
commit 373ef5662d
2 changed files with 2 additions and 11 deletions

View File

@@ -1,4 +1,4 @@
// Copyright 2000-2020 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-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
package com.maddyhome.idea.copyright.options;
import com.intellij.openapi.util.DefaultJDOMExternalizer;
@@ -14,8 +14,6 @@ public final class LanguageOptions implements Cloneable {
public static final int USE_TEMPLATE = 2;
public static final int USE_TEXT = 3;
public static final int MIN_SEPARATOR_LENGTH = 5;
public static final int MAX_SEPARATOR_LENGTH = 300;
public static final String DEFAULT_FILLER = " ";
private static final LanguageOptions DEFAULT_SETTINGS_HOLDER = new LanguageOptions();
@@ -250,8 +248,6 @@ public final class LanguageOptions implements Cloneable {
this.trim = trim;
}
public void setNotice(String notice){this.notice = notice;}
public int fileTypeOverride;
public boolean relativeBefore;
public boolean addBlankAfter;
@@ -267,5 +263,4 @@ public final class LanguageOptions implements Cloneable {
public boolean box;
public String filler;
public boolean trim;
public String notice;
}

View File

@@ -1,5 +1,4 @@
// Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
package com.maddyhome.idea.copyright.options;
import com.intellij.openapi.diagnostic.Logger;
@@ -108,10 +107,7 @@ public class Options implements Cloneable {
for (Element option : root.getChildren("option")) {
String name = option.getAttributeValue("name");
String val = option.getAttributeValue("value");
if ("body".equals(name)) {
opts.setNotice(val);
}
else if ("location".equals(name)) {
if ("location".equals(name)) {
if(val != null){
opts.setFileLocation(Integer.parseInt(val));
}