reducing employee bean content (#2332)

* moving jmh into libraries module

* refactoring jmh

* Update pom.xml

* manual algorightm

* with BM result

* fix for space issue

* Fixed indentation

* change as per suggestion

* vavr either

* adding unit test and othe rutilities

* adding concurrent module

* concurrent package description

* concurrent package description

* Update EitherUnitTest.java

* introducing lambda expression

* jooby project

* jooby project

* reducing employee bean content
This commit is contained in:
Abhinab Kanrar 2017-07-30 01:18:06 +05:30 committed by Grzegorz Piwowarek
parent 244a678b46
commit fd6e7c51fc
1 changed files with 1 additions and 5 deletions

View File

@ -5,16 +5,12 @@ public class Employee {
String id;
String name;
String email;
String phone;
String address;
public Employee(String id, String name, String email, String phone, String address) {
public Employee(String id, String name, String email) {
super();
this.id = id;
this.name = name;
this.email = email;
this.phone = phone;
this.address = address;
}
}