Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BioinformaticDataCompression
BigDataViewer_Fiji_Plugin
Commits
fe376e99
Commit
fe376e99
authored
Jul 23, 2015
by
tpietzsch
Browse files
Merge pull request #2 from hkmoon/backward-compatible
Make safer way to handle json reader
parents
9363b04d
cc6fa5a5
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/main/java/bdv/ij/BigDataBrowserPlugIn.java
View file @
fe376e99
...
...
@@ -44,7 +44,7 @@ public class BigDataBrowserPlugIn implements PlugIn
BufferedImage
image
=
null
;
try
{
image
=
ImageIO
.
read
(
new
URL
(
"http://fiji.sc/_images/a/ae/Fiji-icon
.png"
)
);
image
=
ImageIO
.
read
(
getClass
().
getResourceAsStream
(
"/fiji
.png"
)
);
}
catch
(
final
IOException
e
)
{
...
...
@@ -101,6 +101,8 @@ public class BigDataBrowserPlugIn implements PlugIn
thumbnailUrl
=
reader
.
nextString
();
else
if
(
name
.
equals
(
"datasetUrl"
)
)
datasetUrl
=
reader
.
nextString
();
else
reader
.
nextString
();
}
if
(
id
!=
null
)
...
...
src/main/resources/fiji.png
0 → 100644
View file @
fe376e99
5.18 KB
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