Skip to content

Commit 47d646e

Browse files
committed
run spotless:apply
1 parent b8675dd commit 47d646e

File tree

71 files changed

+387
-429
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+387
-429
lines changed

bin/start-hbase.cmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ if "%distMode%"=="false" (
4747
if "%distMode%"=="true" (
4848
@echo This is not implemented yet. Stay tuned.
4949
@rem call %HBASE_BIN_PATH%\hbase-daemons.cmd --config "${HBASE_CONF_DIR}" start zookeeper
50-
@rem call %HBASE_BIN_PATH%\hbase-daemon.cmd --config "${HBASE_CONF_DIR}" start master
50+
@rem call %HBASE_BIN_PATH%\hbase-daemon.cmd --config "${HBASE_CONF_DIR}" start master
5151

5252
@rem call %HBASE_BIN_PATH%\hbase-daemons.cmd --config "%HBASE_CONF_DIR%" --hosts "%HBASE_REGIONSERVERS%" start regionserver
5353
@rem call %HBASE_BIN_PATH%\hbase-daemons.cmd --config "%HBASE_CONF_DIR%" --hosts "%HBASE_BACKUP_MASTERS%" start master-backup
@@ -58,4 +58,4 @@ if "%distMode%"=="false" (
5858

5959
@rem -------------- End of main script --------------
6060
endlocal
61-
goto :eof
61+
goto :eof

bin/stop-hbase.cmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,4 +51,4 @@ if "%distMode%"=="false" (
5151

5252
@rem -------------- End of main script --------------
5353
endlocal
54-
goto :eof
54+
goto :eof

conf/hbase-env.cmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
@rem The maximum amount of heap to use. Default is left to JVM default.
2828
@rem set HBASE_HEAPSIZE=1000
2929

30-
@rem Uncomment below if you intend to use off heap cache. For example, to allocate 8G of
30+
@rem Uncomment below if you intend to use off heap cache. For example, to allocate 8G of
3131
@rem offheap, set the value to "8G".
3232
@rem set HBASE_OFFHEAPSIZE=1000
3333

dev-support/design-docs/Coprocessor_Design_Improvements-Use_composition_instead_of_inheritance-HBASE-17732.adoc

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -253,5 +253,3 @@ which have hardened over years can be marked IS.Stable.
253253
“getService()” method. So WALCoprocessor which cannot support service doesn’t have one. That may
254254
look minor thing. But if our design can cleanly convey what is and isn’t supported, that’s beautiful
255255
and powerful and helpful for downstream developers.
256-
257-

dev-support/design-docs/HBASE-18095-Zookeeper-less-client-connection-design.adoc

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,5 +108,3 @@ Given this compatibility matrix,
108108
* Mini clusters tests simulating real world scenarios (like stale meta/master etc) should be added.
109109
* Consider making this the default registry implementation and let the code bakein for a while before release.
110110
* Deploy the bits on a real distributed cluster and test a long running application that is heavy on these RPCs and inject faults.
111-
112-

hbase-examples/src/main/cpp/DemoClient.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ printRow(const std::vector<TRowResult> &rowResult)
5050
{
5151
for (size_t i = 0; i < rowResult.size(); i++) {
5252
std::cout << "row: " << rowResult[i].row << ", cols: ";
53-
for (CellMap::const_iterator it = rowResult[i].columns.begin();
53+
for (CellMap::const_iterator it = rowResult[i].columns.begin();
5454
it != rowResult[i].columns.end(); ++it) {
5555
std::cout << it->first << " => " << it->second.value << "; ";
5656
}
@@ -70,8 +70,8 @@ printVersions(const std::string &row, const CellVec &versions)
7070

7171
}
7272

73-
int
74-
main(int argc, char** argv)
73+
int
74+
main(int argc, char** argv)
7575
{
7676
if (argc < 3) {
7777
std::cerr << "Invalid arguments!\n" << "Usage: DemoClient host port" << std::endl;
@@ -222,7 +222,7 @@ main(int argc, char** argv)
222222
client.getRow(rowResult, t, row, dummyAttributes);
223223
printRow(rowResult);
224224

225-
// sleep to force later timestamp
225+
// sleep to force later timestamp
226226
poll(0, 0, 50);
227227

228228
mutations.clear();

hbase-examples/src/main/cpp/gen-cpp/Hbase.cpp

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

hbase-examples/src/main/cpp/gen-cpp/Hbase_constants.cpp

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

hbase-examples/src/main/cpp/gen-cpp/Hbase_server.skeleton.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,4 +249,3 @@ int main(int argc, char **argv) {
249249
server.serve();
250250
return 0;
251251
}
252-

hbase-examples/src/main/perl/DemoClient.pl

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
# to you under the Apache License, Version 2.0 (the
77
# "License"); you may not use this file except in compliance
88
# with the License. You may obtain a copy of the License at
9-
#
9+
#
1010
# http://www.apache.org/licenses/LICENSE-2.0
11-
#
11+
#
1212
# Unless required by applicable law or agreed to in writing, software
1313
# distributed under the License is distributed on an "AS IS" BASIS,
1414
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -199,14 +199,14 @@ ($)
199199
$mutations = [
200200
Hbase::Mutation->new ( { column => "entry:num", value => "0" } ),
201201
Hbase::Mutation->new ( { column => "entry:foo", value => "FOO" } ),
202-
];
202+
];
203203
$client->mutateRow ( $demo_table, $row, $mutations, %dummy_attributes );
204204
printRow ( $client->getRow ( $demo_table, $row, %dummy_attributes ) );
205205

206206
$mutations = [
207207
Hbase::Mutation->new ( { column => "entry:foo", isDelete => 1 } ),
208208
Hbase::Mutation->new ( { column => "entry:num", value => -1 } ),
209-
];
209+
];
210210
$client->mutateRow ( $demo_table, $row, $mutations, %dummy_attributes );
211211
printRow ( $client->getRow ( $demo_table, $row, %dummy_attributes ) );
212212

@@ -217,7 +217,7 @@ ($)
217217
$client->mutateRow ( $demo_table, $row, $mutations, %dummy_attributes );
218218
printRow ( $client->getRow ( $demo_table, $row, %dummy_attributes ) );
219219

220-
$mutations = [
220+
$mutations = [
221221
Hbase::Mutation->new ( { column => "entry:num", value => -999 } ),
222222
Hbase::Mutation->new ( { column => "entry:sqr", isDelete => 1 } ),
223223
];
@@ -285,4 +285,3 @@ ($)
285285
$transport->close ();
286286

287287
exit 0;
288-

0 commit comments

Comments
 (0)