Skip to content

Commit

Permalink
Remove extra spaces (apache#11806)
Browse files Browse the repository at this point in the history
* Remove extra spaces

* solve code conflicts
  • Loading branch information
yx9o authored Aug 13, 2021
1 parent e2483a7 commit 3d47bef
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ default void inc(String... labels) {
/**
* Metric increase by value with labels.
*
* @param value value
* @param value value
* @param labels labels
*/
default void inc(double value, String... labels) {
Expand All @@ -65,7 +65,7 @@ default void dec() {
/**
* Metric decrease by value.
*
* @param value value
* @param value value
*/
default void dec(double value) {
}
Expand All @@ -82,7 +82,7 @@ default void dec(String... labels) {
/**
* Metric decrease by value with labels.
*
* @param value value
* @param value value
* @param labels labels
*/
default void dec(double value, String... labels) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public final class MetricsUtil {
/**
* check if it has proxy class.
*
* @param className the class name
* @param className the class name
* @return true if it has proxy class by the class name, otherwise false
*/
public static boolean classNotExist(final String className) {
Expand Down

0 comments on commit 3d47bef

Please sign in to comment.