Skip to content

Commit 2be7f43

Browse files
lingvo-botcopybara-github
authored andcommitted
Replace tensorflow::Status::OK() with tensorflow::{Status, OkStatus}().
PiperOrigin-RevId: 478985762
1 parent 4865818 commit 2be7f43

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lingvo/core/ops/record_batcher.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ class RecordProcessor {
6262
// Initializes the RecordProcessor. This should be invoked only once before
6363
// calling 'Process', since some processors expect some initialization with an
6464
// OpKernelContext before running.
65-
virtual Status Initialize(OpKernelContext* ctx) { return Status::OK(); }
65+
virtual Status Initialize(OpKernelContext* ctx) { return Status(); }
6666
};
6767

6868
// RecordBatcher takes a RecordYielder, batches the record yielded and

0 commit comments

Comments
 (0)