Skip to content

Commit

Permalink
[FLINK-6956] Make table example POJO classes public
Browse files Browse the repository at this point in the history
This closes apache#4148.
  • Loading branch information
zentol committed Jun 24, 2017
1 parent 9f77073 commit 1f6be83
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,10 @@ public static void main(String[] args) throws Exception {
// USER DATA TYPES
// *************************************************************************

private static class WC {
/**
* Simple POJO containing a word and its respective count.
*/
public static class WC {
public String word;
public long frequency;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,10 @@ public static void main(String[] args) throws Exception {
// USER DATA TYPES
// *************************************************************************

private static class WC {
/**
* Simple POJO containing a word and its respective count.
*/
public static class WC {
public String word;
public long frequency;

Expand Down

0 comments on commit 1f6be83

Please sign in to comment.