Skip to content

Commit

Permalink
Convert RenderTreeHost to Kotlin
Browse files Browse the repository at this point in the history
Summary: as title

Reviewed By: pentiumao

Differential Revision: D52909543

fbshipit-source-id: 3463e8d76b2774f0e1505cfa1a9064e95282fa07
  • Loading branch information
Peng Jiang authored and facebook-github-bot committed Jan 22, 2024
1 parent 90a0e35 commit 8cf81bf
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@
* limitations under the License.
*/

package com.facebook.rendercore;
package com.facebook.rendercore

/**
* An implementation of this interface should contain a {@link RenderTree} without relying on {@link
* RenderState} to prepare it.
* An implementation of this interface should contain a [RenderTree] without relying on
* [RenderState] to prepare it.
*/
public interface RenderTreeHost extends RenderCoreExtensionHost {
void setRenderTree(RenderTree tree);
interface RenderTreeHost : RenderCoreExtensionHost {
fun setRenderTree(tree: RenderTree)
}

0 comments on commit 8cf81bf

Please sign in to comment.