You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@netbeans.apache.org by GitBox <gi...@apache.org> on 2022/11/21 17:04:37 UTC

[GitHub] [netbeans] matthiasblaesing commented on a diff in pull request #4979: Optimize matching for CSS completion queries

matthiasblaesing commented on code in PR #4979:
URL: https://github.com/apache/netbeans/pull/4979#discussion_r1028314919


##########
ide/css.editor/src/org/netbeans/modules/css/editor/csl/CssCompletion.java:
##########
@@ -1682,6 +1689,40 @@ public boolean visit(Node node) {
         } //switch
     }
 
+    @SuppressWarnings("AssignmentToMethodParameter")
+    public final int levenshteinDistance(
+            @NonNull String str1,
+            @NonNull String str2,
+            final boolean caseSensitive) {

Review Comment:
   This is a verbatim copy, so I'll keep it this way.



-- 
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: notifications-unsubscribe@netbeans.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org
For additional commands, e-mail: notifications-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists