junichi11 commented on code in PR #7027:
URL: https://github.com/apache/netbeans/pull/7027#discussion_r1478284795
##########
php/php.editor/src/org/netbeans/modules/php/editor/completion/PHPCompletionItem.java:
##########
@@ -129,16 +131,22 @@ public abstract class PHPCompletionItem implements
CompletionProposal {
protected static final ImageIcon KEYWORD_ICON =
IconsUtils.loadKeywordIcon();
protected static final ImageIcon ENUM_CASE_ICON =
IconsUtils.loadEnumCaseIcon();
private static final int TYPE_NAME_MAX_LENGTH =
Integer.getInteger("nb.php.editor.ccTypeNameMaxLength", 30); // NOI18N
- final CompletionRequest request;
- private final ElementHandle element;
- private QualifiedNameKind generateAs;
private static ScheduledExecutorService service =
Executors.newSingleThreadScheduledExecutor();
private static final Cache<FileObject, PhpLanguageProperties>
PROPERTIES_CACHE
= new Cache<>(new WeakHashMap<>());
+ private static final String AUTO_IMPORT_PARAM_FORMAT =
"%s${php-auto-import default=\"\" fqName=%s aliasName=\"%s\" useType=%s
editable=false}"; // NOI18N
+ private static volatile Boolean ADD_FIRST_CLASS_CALLABLE = null; // for
unit tests
+
+ final CompletionRequest request;
+ private final ElementHandle element;
+ private QualifiedNameKind generateAs;
Review Comment:
Will do that. Thanks!
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists