Fixes for @Autowired over constructor
This commit is contained in:
@@ -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()}
|
||||
};
|
||||
|
||||
|
||||
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user