comparison flys-client/src/main/java/de/intevation/flys/client/server/was/Assertion.java @ 2944:0889ec33249c

Add missing + from last commit flys-client/trunk@4910 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Bjoern Ricks <bjoern.ricks@intevation.de>
date Tue, 10 Jul 2012 10:51:20 +0000
parents 7683d4e43afa
children
comparison
equal deleted inserted replaced
2943:7683d4e43afa 2944:0889ec33249c
58 if (from != null) { 58 if (from != null) {
59 try { 59 try {
60 this.notbefore = dateformat.parse(from); 60 this.notbefore = dateformat.parse(from);
61 } 61 }
62 catch(ParseException e) { 62 catch(ParseException e) {
63 logger.error("Unknown datetime format for Condition " 63 logger.error("Unknown datetime format for Condition " +
64 "NotBefore " + from); 64 "NotBefore " + from);
65 } 65 }
66 } 66 }
67 67
68 String until = condition.getAttributeValue("NotOnOrAfter"); 68 String until = condition.getAttributeValue("NotOnOrAfter");
69 if (until != null) { 69 if (until != null) {
70 try { 70 try {
71 this.notonorafter = dateformat.parse(until); 71 this.notonorafter = dateformat.parse(until);
72 } 72 }
73 catch(ParseException e) { 73 catch(ParseException e) {
74 logger.error("Unknown datetime format for Condition " 74 logger.error("Unknown datetime format for Condition " +
75 "NotOnOrAfter " + until); 75 "NotOnOrAfter " + until);
76 } 76 }
77 } 77 }
78 } 78 }
79 } 79 }

http://dive4elements.wald.intevation.org