Skip to content

Commit 11c3183

Browse files
committed
fix formatting
1 parent 2a084a5 commit 11c3183

File tree

3 files changed

+3
-8
lines changed

3 files changed

+3
-8
lines changed

google/cloud/bigtable/client.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
// limitations under the License.
1414

1515
#include "google/cloud/bigtable/client.h"
16-
#include "internal/partial_result_set_source.h"
1716
#include "google/cloud/bigtable/internal/unary_client_utils.h"
1817
#include "google/cloud/options.h"
18+
#include "internal/partial_result_set_source.h"
1919

2020
namespace google {
2121
namespace cloud {

google/cloud/bigtable/internal/data_connection_impl.cc

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -722,8 +722,7 @@ StatusOr<bigtable::PreparedQuery> DataConnectionImpl::PrepareQuery(
722722
auto backoff = backoff_policy(*current);
723723

724724
auto response = google::cloud::internal::RetryLoop(
725-
std::move(retry), std::move(backoff),
726-
Idempotency::kIdempotent,
725+
std::move(retry), std::move(backoff), Idempotency::kIdempotent,
727726
[this, operation_context](
728727
grpc::ClientContext& context, Options const& options,
729728
google::bigtable::v2::PrepareQueryRequest const& request) {
@@ -914,7 +913,6 @@ bigtable::RowStream DataConnectionImpl::ExecuteQuery(
914913
std::make_unique<StatusOnlyResultSetSource>(internal::RetryLoopError(
915914
last_status, __func__, query_plan_retry_policy->IsExhausted())));
916915
}
917-
918916
GOOGLE_CLOUD_CPP_INLINE_NAMESPACE_END
919917
} // namespace bigtable_internal
920918
} // namespace cloud

google/cloud/bigtable/table.h

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1000,9 +1000,7 @@ class Table {
10001000
ChangePolicies(std::forward<Policies>(policies)...);
10011001
}
10021002

1003-
std::shared_ptr<DataConnection> connection() const {
1004-
return connection_;
1005-
}
1003+
std::shared_ptr<DataConnection> connection() const { return connection_; }
10061004

10071005
private:
10081006
/**
@@ -1047,7 +1045,6 @@ class Table {
10471045
return idempotent_mutation_policy_->clone();
10481046
}
10491047

1050-
10511048
///@{
10521049
/// @name Helper functions to implement constructors with changed policies.
10531050
void ChangePolicy(RPCRetryPolicy const& policy) {

0 commit comments

Comments
 (0)