From 4371038cd1e1a0a0ef5283bfd540c7623fbe7514 Mon Sep 17 00:00:00 2001 From: Bryan Duxbury Date: Thu, 22 Jan 2009 16:27:16 +0000 Subject: [PATCH] THRIFT-240. java: TBase should implement Cloneable The TBase interface now extends Cloneable. git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@736691 13f79535-47bb-0310-9956-ffa450edef68 --- lib/java/src/org/apache/thrift/TBase.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/java/src/org/apache/thrift/TBase.java b/lib/java/src/org/apache/thrift/TBase.java index faf1435b..aaf17e43 100644 --- a/lib/java/src/org/apache/thrift/TBase.java +++ b/lib/java/src/org/apache/thrift/TBase.java @@ -13,7 +13,7 @@ import org.apache.thrift.protocol.TProtocol; * * @author Mark Slee */ -public interface TBase { +public interface TBase extends Cloneable { /** * Reads the TObject from the given input protocol. -- 2.17.1