Compare commits
No commits in common. "1800ac2c1bce57695ef6f425231c3ba59dc96d2b" and "efa86f02e5700681f9c101b4a03bf619b1cc53b5" have entirely different histories.
1800ac2c1b
...
efa86f02e5
@ -12,5 +12,5 @@ open module org.atriasoft.esvg {
|
||||
requires transitive org.atriasoft.exml;
|
||||
requires org.atriasoft.pngencoder;
|
||||
requires java.desktop;
|
||||
requires transitive org.atriasoft.egami;
|
||||
requires org.atriasoft.egami;
|
||||
}
|
||||
|
@ -3,7 +3,6 @@ package org.atriasoft.esvg;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
import org.atriasoft.aknot.exception.AknotException;
|
||||
import org.atriasoft.egami.ImageFloatRGBA;
|
||||
import org.atriasoft.esvg.internal.Log;
|
||||
import org.atriasoft.etk.Uri;
|
||||
@ -211,7 +210,7 @@ public class EsvgDocument extends Base {
|
||||
XmlNode doc = null;
|
||||
try {
|
||||
doc = Exml.parse(uri);
|
||||
} catch (ExmlException | AknotException e) {
|
||||
} catch (ExmlException e) {
|
||||
// TODO Auto-generated catch block
|
||||
e.printStackTrace();
|
||||
return false;
|
||||
@ -243,7 +242,7 @@ public class EsvgDocument extends Base {
|
||||
XmlNode doc = null;
|
||||
try {
|
||||
doc = Exml.parse(data);
|
||||
} catch (ExmlException | AknotException e) {
|
||||
} catch (ExmlException e) {
|
||||
// TODO Auto-generated catch block
|
||||
e.printStackTrace();
|
||||
return false;
|
||||
|
Loading…
x
Reference in New Issue
Block a user