Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f5269c14 authored by Daisuke Miyakawa's avatar Daisuke Miyakawa
Browse files

Modify android.syncml.pim so that no one is going to use.

- Remove android.syncml.pim.vcalendar since no one is using it.
-- We have android.pim.ICalendar.java, so handling vCalendar (== ICalendar) is possble without android.syncml.pim
- Mark android.syncml.pim.vcard and related code as obsolete.
-- Refactored version is in android.pim.vcard, which supports new Contacts database schema.

Related issue: 2110530
parent 24d237db
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -28,6 +28,7 @@ import java.util.Set;
import java.util.Map.Entry;
import java.util.regex.Pattern;

@Deprecated
public class PropertyNode {

    public String propName;
+1 −0
Original line number Diff line number Diff line
@@ -18,6 +18,7 @@ package android.syncml.pim;

import java.util.List;

@Deprecated
public interface VBuilder {
    void start();

+1 −0
Original line number Diff line number Diff line
@@ -19,6 +19,7 @@ package android.syncml.pim;
import java.util.Collection;
import java.util.List;

@Deprecated
public class VBuilderCollection implements VBuilder {

    private final Collection<VBuilder> mVBuilderCollection;
+1 −0
Original line number Diff line number Diff line
@@ -36,6 +36,7 @@ import java.util.List;
 * VNode: standy by a vcard instance.
 * PropertyNode: standy by a property line of a card.
 */
@Deprecated
public class VDataBuilder implements VBuilder {
    static private String LOG_TAG = "VDATABuilder"; 
    
+1 −0
Original line number Diff line number Diff line
@@ -18,6 +18,7 @@ package android.syncml.pim;

import java.util.ArrayList;

@Deprecated
public class VNode {

    public String VName;
Loading