@@ -67,8 +67,7 @@ class ARROW_EXPORT Reader {
6767 // / \param[in] source a RandomAccessFile instance
6868 // / \return the table reader
6969 // / \deprecated Deprecated in 25.0.0. Use arrow::ipc::RecordBatchFileReader instead.
70- ARROW_DEPRECATED (
71- " Deprecated in 25.0.0. Use arrow::ipc::RecordBatchFileReader instead." )
70+ ARROW_DEPRECATED (" Deprecated in 25.0.0. Use arrow::ipc::RecordBatchFileReader instead." )
7271 static Result<std::shared_ptr<Reader>> Open (
7372 const std::shared_ptr<io::RandomAccessFile>& source);
7473
@@ -79,8 +78,7 @@ class ARROW_EXPORT Reader {
7978 // / \param[in] options IPC Read options
8079 // / \return the table reader
8180 // / \deprecated Deprecated in 25.0.0. Use arrow::ipc::RecordBatchFileReader instead.
82- ARROW_DEPRECATED (
83- " Deprecated in 25.0.0. Use arrow::ipc::RecordBatchFileReader instead." )
81+ ARROW_DEPRECATED (" Deprecated in 25.0.0. Use arrow::ipc::RecordBatchFileReader instead." )
8482 static Result<std::shared_ptr<Reader>> Open (
8583 const std::shared_ptr<io::RandomAccessFile>& source, const IpcReadOptions& options);
8684
@@ -117,9 +115,6 @@ class ARROW_EXPORT Reader {
117115 std::shared_ptr<Table>* out) = 0;
118116};
119117
120- // / \struct WriteProperties
121- // / \brief Options for writing Feather files
122- // /
123118// / \note Deprecated in 25.0.0. Feather V2 is the Arrow IPC file format;
124119// / use arrow::ipc::MakeFileWriter with arrow::ipc::IpcWriteOptions instead.
125120struct ARROW_EXPORT WriteProperties {
@@ -156,8 +151,6 @@ struct ARROW_EXPORT WriteProperties {
156151 int compression_level = ::arrow::util::kUseDefaultCompressionLevel ;
157152};
158153
159- // / \brief Write a Table to a Feather file
160- // /
161154// / \deprecated Deprecated in 25.0.0. Feather V2 is the Arrow IPC file format;
162155// / use arrow::ipc::MakeFileWriter instead.
163156ARROW_DEPRECATED (" Deprecated in 25.0.0. Use arrow::ipc::MakeFileWriter instead." )
0 commit comments