Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Milhomme Allan
JavaMetaParser
Commits
5d85cd7e
Commit
5d85cd7e
authored
Oct 15, 2018
by
Custom2043
Browse files
Add null security
parent
71369d22
Changes
2
Hide whitespace changes
Inline
Side-by-side
JMP.jar
View file @
5d85cd7e
No preview for this file type
src/parser/TokenCreator.java
View file @
5d85cd7e
...
...
@@ -50,8 +50,9 @@ public class TokenCreator
else
{
if
(
result
.
getSearch
().
getSearchName
()
!=
null
)
for
(
int
i
=
0
;
i
<
result
.
getArray
().
length
;
i
++)
write
(
build
,
result
.
getSearch
().
getSearchName
(),
pos
,
max
,
result
.
getArray
()[
i
]);
if
(
result
.
getArray
()
!=
null
)
for
(
int
i
=
0
;
i
<
result
.
getArray
().
length
;
i
++)
write
(
build
,
result
.
getSearch
().
getSearchName
(),
pos
,
max
,
result
.
getArray
()[
i
]);
if
(
result
.
getArray
()
!=
null
)
for
(
int
i
=
0
;
i
<
result
.
getArray
().
length
;
i
++)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment