Intentions missing in Maia

In Maia I can't find "Bring to scope" and "Introduce field" intentions, iirc they was in code of Idea and not in external plugins. Am i wrong?

0
5 comments

If I understand correctly what you mean, these aren't intentions but rather quickfixes shown for unresolved references, and they're indeed part of the core code.

0

So can't find "Bring to scope" at all
Before it appeared after some timeout, now it doensn't

0

Btw where QuickFixes configured?


0

The "Bring xxx to scope" quickfix only appears under certain conditions, usually only simple cases.

I can see both "Create field" and "Bring xxxx to scope" quickfixes in Maia 90.94, no problems.

public class TestUnresolved {
    void method() {
        System.out.println(thing);
        String thing = "hi";
        System.out.println(thing + thing);
    }
}


-Alex

0

Hello Dmitry,

Btw where QuickFixes configured?


They are not. What kind of configuration could there be?

--
Dmitry Jemerov
Development Lead
JetBrains, Inc.
http://www.jetbrains.com/
"Develop with Pleasure!"


0

Please sign in to leave a comment.