[Yanel-commits] rev 21900 - public/yanel/trunk/src/contributions/resources/calendar/src/java/org/wyona/yanel/impl/resources

michi at wyona.com michi at wyona.com
Fri Jan 19 00:12:43 CET 2007


Author: michi
Date: 2007-01-19 00:12:41 +0100 (Fri, 19 Jan 2007)
New Revision: 21900

Modified:
   public/yanel/trunk/src/contributions/resources/calendar/src/java/org/wyona/yanel/impl/resources/CalendarResource.java
Log:
log cleaned

Modified: public/yanel/trunk/src/contributions/resources/calendar/src/java/org/wyona/yanel/impl/resources/CalendarResource.java
===================================================================
--- public/yanel/trunk/src/contributions/resources/calendar/src/java/org/wyona/yanel/impl/resources/CalendarResource.java	2007-01-18 23:08:08 UTC (rev 21899)
+++ public/yanel/trunk/src/contributions/resources/calendar/src/java/org/wyona/yanel/impl/resources/CalendarResource.java	2007-01-18 23:12:41 UTC (rev 21900)
@@ -165,11 +165,10 @@
      * Parse ICS and write events as XML into repository
      */
     public void write(InputStream in) throws Exception {
-        log.warn("Not implemented yet!");
-        log.warn("TODO: Parse ICS and write events as XML into repository ...");
         java.io.BufferedReader br = new java.io.BufferedReader(new java.io.InputStreamReader(in));
         String line;
         CalendarEvent event = null;
+        log.debug("Parse ICS and write events as XML into repository ...");
         while ((line = br.readLine()) != null) {
             if (line.startsWith("BEGIN:VEVENT")) {
                 event = new CalendarEvent();




More information about the Yanel-commits mailing list