Skip to content

Instantly share code, notes, and snippets.

@mehmetcemyucel
Created March 27, 2021 09:51
Show Gist options
  • Save mehmetcemyucel/66fcefdfae3e4253575d2a807f688399 to your computer and use it in GitHub Desktop.
Save mehmetcemyucel/66fcefdfae3e4253575d2a807f688399 to your computer and use it in GitHub Desktop.
spring-native-vanilla-object
public class SimplePojo implements Pojo {
public void foo() {
// this next method invocation is a direct call on the 'this' reference
this.bar();
}
public void bar() {
// some logic...
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment