Im quite new to the new Java features and was wondering how I could convert this bit of code into a lambda expression?
tc.setCellValueFactory((p) -> {
return new ReadOnlyStringWrapper(p.getValue());
});
This is what IntelliJ Idea IDE is giving me.

return.