Extract variavle broken?
Trying to extract lastName + firstName.charAt(0) from
e.setNetworkName("cn=" + lastName + firstName.charAt(0) +
",ou=HQ5,ou=HQ,o=GAO");
tells me "selected block should represent expression"
Please sign in to leave a comment.
This is a long-known issue. Because of associativity, the text selected doesn't represent an subexpression, and so IDEA can't extract it. The SmartIntroduce plugin fixes this.
--Dave Griffith