Loading core/java/android/content/ContentProvider.java +7 −6 Original line number Diff line number Diff line Loading @@ -1033,14 +1033,15 @@ public abstract class ContentProvider implements ContentInterface, ComponentCall /** @hide */ public final void setTransportLoggingEnabled(boolean enabled) { if (mTransport != null) { if (mTransport == null) { return; } if (enabled) { mTransport.mInterface = new LoggingContentInterface(getClass().getSimpleName(), this); } else { mTransport.mInterface = this; } } } /** * Implement this to initialize your content provider on startup. Loading Loading
core/java/android/content/ContentProvider.java +7 −6 Original line number Diff line number Diff line Loading @@ -1033,14 +1033,15 @@ public abstract class ContentProvider implements ContentInterface, ComponentCall /** @hide */ public final void setTransportLoggingEnabled(boolean enabled) { if (mTransport != null) { if (mTransport == null) { return; } if (enabled) { mTransport.mInterface = new LoggingContentInterface(getClass().getSimpleName(), this); } else { mTransport.mInterface = this; } } } /** * Implement this to initialize your content provider on startup. Loading