Fixes for @Autowired over constructor

This commit is contained in:
BoykoAlex
2022-06-16 11:32:19 -04:00
parent eb844bfd88
commit 382d0bbac6
4 changed files with 73 additions and 4 deletions

View File

@@ -75,6 +75,8 @@ public abstract class AbstractProblemSeverityPreferencesPage extends FieldEditor
private static final String[][] SEVERITY_NAMES_AND_VALUES = {
{"Error", ProblemSeverity.ERROR.toString()},
{"Warning", ProblemSeverity.WARNING.toString()},
{"Info", ProblemSeverity.INFO.toString()},
{"Hint", ProblemSeverity.HINT.toString()},
{"Ignore", ProblemSeverity.IGNORE.toString()}
};

View File

@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2014, 2016 Pivotal, Inc.
* Copyright (c) 2014, 2022 Pivotal, Inc.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -16,6 +16,8 @@ package org.springframework.ide.eclipse.editor.support.reconcile;
public enum ProblemSeverity {
IGNORE,
HINT,
INFO,
WARNING,
ERROR;