Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
add a dummy comment
  • Loading branch information
=Devahanuk77 committed Jan 11, 2023
commit a4dfaf2ef9a90865a2ac1eeee6922c24116266fb
2 changes: 1 addition & 1 deletion src/com/winterbe/java8/samples/lambda/Lambda2.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ String startsWith(String s) {
interface PersonFactory<P extends Person> {
P create(String firstName, String lastName);
}

// Devendra made a comment
public static void main(String[] args) {
Converter<String, Integer> integerConverter1 = (from) -> Integer.valueOf(from);
Integer converted1 = integerConverter1.convert("123");
Expand Down