Skip to content

Commit 7a1d069

Browse files
author
Rajeev Kumar Singh
committedOct 4, 2017
Default Constructor
1 parent c51cd73 commit 7a1d069

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed
 

‎.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
*.class
22
target
33
.idea
4+
.DS_Store
5+
*.iml

‎java-csv-file-handling-with-opencsv/src/main/java/MyUser.java

+4
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ public class MyUser {
77
private String phoneNo;
88
private String country;
99

10+
public MyUser() {
11+
12+
}
13+
1014
public MyUser(String name, String email, String phoneNo, String country) {
1115
this.name = name;
1216
this.email = email;

0 commit comments

Comments
 (0)