mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-11 11:36:59 +07:00
Otherwise, wrong class may be resolved in incomplete project model AnonymousHashCode.java changed, because java.lang.Object import was unresolved (no JDK configured) and we now refuse to resolve to same-package class if there's a suitable explicit import beforeHierarchy.java/afterHierarchy.java changed, because the import was incorrect, and it prevented importing implicit java.lang.Exception predicates2.java changed: incorrect import removed (now prevents importing java.lang.String) MoveInnerProcessor changes: import refs should be rebound first; otherwise they disallow to rebind normal refs SpringDataMongoDbQueryCompletionTest changed: erroneous import removed GitOrigin-RevId: f380409c445306bb9b8aceb5fe4dce1351511283
20 lines
698 B
Java
20 lines
698 B
Java
/*
|
|
* Copyright 2000-2012 JetBrains s.r.o.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
public class A<caret> extends Object {
|
|
void foo() {
|
|
Object myObject = new Object(){};
|
|
}
|
|
} |