Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
小 白蛋
Intellij Community
Commits
a11744ca
Commit
a11744ca
authored
11 years ago
by
peter
Browse files
Options
Download
Email Patches
Plain Diff
adapt dfa testAlexBug to jdk notnull inference
parent
f98006ed
Branches unavailable
Tags unavailable
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
java/java-tests/testData/inspection/dataFlow/AlexBug/src/Test.java
+4
-2
...-tests/testData/inspection/dataFlow/AlexBug/src/Test.java
with
4 additions
and
2 deletions
+4
-2
java/java-tests/testData/inspection/dataFlow/AlexBug/src/Test.java
+
4
-
2
View file @
a11744ca
public
class
Test
{
public
String
foo
(
String
path
)
{
String
smth
=
new
String
(
path
);
public
Test
(
String
s
)
{
}
public
Test
foo
(
String
path
)
{
Test
smth
=
new
Test
(
path
);
if
(
path
==
null
)
return
null
;
return
smth
;
}
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
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
Menu
Projects
Groups
Snippets
Help