Skip to content

Commit 9c277a3

Browse files
committed
fix condition
fix #414
1 parent 9039e5c commit 9c277a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

autoload/javacomplete/complete/complete.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -776,7 +776,7 @@ function! s:DoGetMemberList(ci, outputkind)
776776

777777
if kind == 11
778778
let tmp = javacomplete#collector#DoGetClassInfo('this')
779-
if a:ci.name && tmp.name == a:ci.name
779+
if tmp.name == get(a:ci, 'name', '')
780780
let outputkind = 15
781781
endif
782782
endif

0 commit comments

Comments
 (0)