Skip to content

Conversation

@drbug2000
Copy link
Collaborator

📝 요약

🔖 변경 사항

  • 첫줄이 everyone 일 시 제목으로 사용하지 않음
  • 첫줄에 everyone 포함일때 everyone 제거하고 제목으로 사용

✅ 리뷰 요구사항

📸 확인 방법 (선택)



📌 PR 진행 시 이러한 점들을 참고해 주세요

* P1 : 꼭 반영해 주세요 (Request Changes) - 이슈가 발생하거나 취약점이 발견되는 케이스 등
* P2 : 반영을 적극적으로 고려해 주시면 좋을 것 같아요 (Comment)
* P3 : 이런 방법도 있을 것 같아요~ 등의 사소한 의견입니다 (Chore)

@drbug2000 drbug2000 linked an issue Apr 3, 2025 that may be closed by this pull request
import java.util.Arrays;

@Getter
public class TitleAndContentParser {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

확실히 객체 분리 해놓으니까 유용하게 쓰이네요 굳!!!

public class TitleAndContentParser {
private String title;
private String content;
private static final String EVERYONE_MENTION = "@everyone";
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

static final 상수 설정 좋습니다!

return new TitleAndContentParser(title,content);
}

private static boolean validateTitle(String line){
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

메서드 분리 굳!

return true;
}

private static String deleteMention(String input){
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

이 메서드는 no use 인데 뭐죠??

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

수정해서 올렸습니다

@drbug2000 drbug2000 merged commit 3d79c65 into develop Apr 4, 2025
2 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

fix : @everyone은 제목으로 설정하지 않음

3 participants