sapling/eden/fs/journal
TJ Yin 65d6a4d886 Remove thrift setters
Summary:
Thrift setter API is deprecated since it doesn't bring any value over direct assignment. Removing it can reduce build-time and make our codebase more consistent.

If result of `s.set_foo(bar)` is unused, this diff replaces

    s.set_foo(bar);

with

    s.foo_ref() = bar;

Otherwise, it replaces

    s.set_foo(bar)

with

    s.foo_ref().emplace(bar)

Reviewed By: chadaustin

Differential Revision: D21712029

fbshipit-source-id: 3a332b4bf6fac6b3cf396d34e6d5ca4849181a6d
2020-05-26 12:38:37 -07:00
..
test journal: add tests to CMake 2020-05-07 10:07:31 -07:00
CMakeLists.txt journal: add tests to CMake 2020-05-07 10:07:31 -07:00
Journal.cpp Remove thrift setters 2020-05-26 12:38:37 -07:00
Journal.h rename tracing to telemetry 2019-10-15 13:39:41 -07:00
JournalDelta.cpp Tidy up license headers 2019-10-11 05:28:23 -07:00
JournalDelta.h Tidy up license headers 2019-10-11 05:28:23 -07:00