[Swift-commit] r3202 - trunk/src/org/griphyn/vdl/mapping
noreply at svn.ci.uchicago.edu
noreply at svn.ci.uchicago.edu
Tue Jan 5 21:36:22 CST 2010
Author: hategan
Date: 2010-01-05 21:36:22 -0600 (Tue, 05 Jan 2010)
New Revision: 3202
Modified:
trunk/src/org/griphyn/vdl/mapping/RootArrayDataNode.java
trunk/src/org/griphyn/vdl/mapping/RootDataNode.java
Log:
merged fix from branch
Modified: trunk/src/org/griphyn/vdl/mapping/RootArrayDataNode.java
===================================================================
--- trunk/src/org/griphyn/vdl/mapping/RootArrayDataNode.java 2010-01-06 03:31:49 UTC (rev 3201)
+++ trunk/src/org/griphyn/vdl/mapping/RootArrayDataNode.java 2010-01-06 03:36:22 UTC (rev 3202)
@@ -55,7 +55,9 @@
catch (InvalidMapperException e) {
throw new RuntimeException(e);
}
- notifyListeners();
+ if (isClosed()) {
+ notifyListeners();
+ }
}
private void checkInputs() {
Modified: trunk/src/org/griphyn/vdl/mapping/RootDataNode.java
===================================================================
--- trunk/src/org/griphyn/vdl/mapping/RootDataNode.java 2010-01-06 03:31:49 UTC (rev 3201)
+++ trunk/src/org/griphyn/vdl/mapping/RootDataNode.java 2010-01-06 03:36:22 UTC (rev 3202)
@@ -65,7 +65,9 @@
catch (InvalidMapperException e) {
throw new RuntimeException("InvalidMapperException caught in mapper initialization", e);
}
- notifyListeners();
+ if (isClosed()) {
+ notifyListeners();
+ }
}
private void checkInputs() {
More information about the Swift-commit
mailing list