Skip to content

Commit

Permalink
Un-deprecate some Vito classes
Browse files Browse the repository at this point in the history
Reviewed By: defHLT

Differential Revision: D25495691

fbshipit-source-id: adbb4ffbe8f3594627ac5aaa8b6f90b20a618dbd
  • Loading branch information
oprisnik authored and facebook-github-bot committed Dec 15, 2020
1 parent 8d461cc commit 29c0ff1
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 8 deletions.
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
// (c) Facebook, Inc. and its affiliates. Confidential and proprietary.
/*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

package com.facebook.fresco.ui.common;

import com.facebook.infer.annotation.Nullsafe;
import javax.annotation.Nullable;

/* Experimental */
@Deprecated
@Nullsafe(Nullsafe.Mode.STRICT)
public class BaseControllerListener2<INFO> implements ControllerListener2<INFO> {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
// (c) Facebook, Inc. and its affiliates. Confidential and proprietary.
/*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

package com.facebook.fresco.ui.common;

Expand All @@ -9,8 +14,6 @@
import java.util.concurrent.ConcurrentHashMap;
import javax.annotation.Nullable;

/* Experimental */
@Deprecated
@Nullsafe(Nullsafe.Mode.STRICT)
public interface ControllerListener2<INFO> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
import com.facebook.infer.annotation.Nullsafe;

/** You must initialize this class before use by calling {@link #init(Implementation)}. */
@Deprecated /* Experimental */
@Nullsafe(Nullsafe.Mode.LOCAL)
public class VitoView {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
import com.facebook.infer.annotation.Nullsafe;

/** You must initialize this class before use by calling {#code VitoView.init()}. */
@Deprecated /* Experimental */
@Nullsafe(Nullsafe.Mode.LOCAL)
public class VitoViewImpl2 implements VitoView.Implementation {

Expand Down

0 comments on commit 29c0ff1

Please sign in to comment.