TeamFILL-IN / server-renew

spring base
The Unlicense
2 stars 0 forks source link

guava library 추가 #15

Closed daehwan2da closed 9 months ago

oownahcohc commented 9 months ago

혹시 guava 라이브러리는 언제 사용하려고 추가하셨는지 알 수 있을까요?! 저는 equals&hashCode 생성할때만 사용해봤거든요 ㅎㅎ

daehwan2da commented 9 months ago

Lists, Maps 과같은 Utils 성 클래스로 컬랙션 생성을 간편하게 할 수 있어서 추가했습니다~

AS-IS

List<String> list = new ArrayList();
list.add("A");
list.add("B");

TO-BE

Lists.newArrayList("A", "B");