Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 8ee3f164 authored by Jérôme Euzenat's avatar Jérôme Euzenat
Browse files

- closed openned writers (this caused problems with GroupAlign)

parent c9185739
No related branches found
No related tags found
No related merge requests found
...@@ -338,6 +338,7 @@ public class GroupEval { ...@@ -338,6 +338,7 @@ public class GroupEval {
} }
writer.println("</tbody></table>"); writer.println("</tbody></table>");
writer.println("</body></html>"); writer.println("</body></html>");
writer.close();
} catch (Exception ex) { } catch (Exception ex) {
ex.printStackTrace(); ex.printStackTrace();
} }
......
...@@ -214,6 +214,7 @@ public class ParserPrinter { ...@@ -214,6 +214,7 @@ public class ParserPrinter {
} }
result.render( renderer ); result.render( renderer );
writer.flush(); writer.flush();
writer.close();
} catch (Exception ex) { } catch (Exception ex) {
ex.printStackTrace(); ex.printStackTrace();
......
...@@ -317,6 +317,7 @@ public class Procalign { ...@@ -317,6 +317,7 @@ public class Procalign {
// Output // Output
result.render(renderer); result.render(renderer);
writer.flush(); writer.flush();
writer.close();
} catch (Exception ex) { } catch (Exception ex) {
throw ex; throw ex;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment