Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
runcon
Plantuml Server
Commits
ab77f245
Commit
ab77f245
authored
Jul 01, 2013
by
maximesinclair
Browse files
IIOException catched when browser session disappears
parent
c166b507
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/main/java/net/sourceforge/plantuml/servlet/UmlDiagramService.java
View file @
ab77f245
...
...
@@ -24,6 +24,7 @@
package
net.sourceforge.plantuml.servlet
;
import
java.io.IOException
;
import
javax.imageio.IIOException
;
import
java.net.URLDecoder
;
import
javax.servlet.ServletException
;
...
...
@@ -70,7 +71,7 @@ public abstract class UmlDiagramService extends HttpServlet {
DiagramResponse
dr
=
new
DiagramResponse
(
response
,
getOutputFormat
());
try
{
dr
.
sendDiagram
(
uml
);
}
catch
(
IOException
ioe
)
{
}
catch
(
I
IOException
i
ioe
)
{
// Browser has closed the connection, do nothing
}
dr
=
null
;
...
...
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