Skip to content

Commit

Permalink
[MINOR][SQL] Fix modifier order.
Browse files Browse the repository at this point in the history
## What changes were proposed in this pull request?

This PR fixes the order of modifier from `abstract public` into `public abstract`.
Currently, when we run `./dev/lint-java`, it shows the error.
```
Checkstyle checks failed at following occurrences:
[ERROR] src/main/java/org/apache/spark/util/sketch/CountMinSketch.java:[53,10] (modifier) ModifierOrder: 'public' modifier out of order with the JLS suggestions.
```

## How was this patch tested?

```
$ ./dev/lint-java
Checkstyle checks passed.
```

Author: Dongjoon Hyun <[email protected]>

Closes apache#11390 from dongjoon-hyun/fix_modifier_order.
  • Loading branch information
dongjoon-hyun authored and srowen committed Feb 26, 2016
1 parent 7af0de0 commit 727e780
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
*
* This implementation is largely based on the {@code CountMinSketch} class from stream-lib.
*/
abstract public class CountMinSketch {
public abstract class CountMinSketch {

public enum Version {
/**
Expand Down

0 comments on commit 727e780

Please sign in to comment.