Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/growth12 #3062

Merged
merged 50 commits into from
Dec 3, 2024
Merged

Feature/growth12 #3062

merged 50 commits into from
Dec 3, 2024

Conversation

eugene-doobu
Copy link
Member

250 패치내역과 섞이지 않게 별도 분리했던 브랜치를 병합합니다.

@eugene-doobu eugene-doobu self-assigned this Dec 3, 2024
@eugene-doobu eugene-doobu added this to the v260.0.0 milestone Dec 3, 2024
@U-lis
Copy link
Contributor

U-lis commented Dec 3, 2024

Please rebase/merge 1.20.2 to see only your works.

Copy link

cloudflare-workers-and-pages bot commented Dec 3, 2024

Deploying lib9c with  Cloudflare Pages  Cloudflare Pages

Latest commit: 531bd83
Status: ✅  Deploy successful!
Preview URL: https://ea63e2ca.lib9c.pages.dev
Branch Preview URL: https://feature-growth12.lib9c.pages.dev

View logs

Comment on lines 48 to 59
public static float ParseFloat(string value)
{
if (TryParseFloat(value, out var result))
{
return result;
}
throw new ArgumentException(value);
}

public static float ParseFloat(string value, float defaultValue) =>
TryParseFloat(value, out var result) ? result : defaultValue;

Copy link
Contributor

Choose a reason for hiding this comment

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

float 를 쓸 일이 없어야 할 것 같은데, ParseFloat 가 어디에서 쓰이나요?

Copy link
Member Author

Choose a reason for hiding this comment

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

안쓰이고 있고, 저번주 주간미팅 전 액션에서 float 사용하지 말자고 공지받기 전 추가했던 건데 여기서 바로 제거해두겠습니다

Copy link
Member Author

Choose a reason for hiding this comment

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

7c19a07
커밋에서 제거해두었습니다

@eugene-doobu eugene-doobu merged commit 2f0960d into development Dec 3, 2024
25 of 26 checks passed
@eugene-doobu eugene-doobu deleted the feature/growth12 branch December 3, 2024 06:27
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
Status: Done
Development

Successfully merging this pull request may close these issues.

2 participants