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

[Refactor] Remove LogClientService and minor code refactor #2979

Merged
merged 4 commits into from
Aug 26, 2023

Conversation

GOODBOY008
Copy link
Member

Remove LogClientService and minor code refactor

wolfboys
wolfboys previously approved these changes Aug 26, 2023
Copy link
Member

@wolfboys wolfboys left a comment

Choose a reason for hiding this comment

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

LGTM

List<String> lines = stream.skip(offset).limit(limit).collect(Collectors.toList());
StringBuilder builder = new StringBuilder();
lines.forEach(line -> builder.append(line).append("\r\n"));
return builder.toString();
Copy link
Member

Choose a reason for hiding this comment

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

The code can be further improved and simplified:
return stream.skip(offset).limit(limit).collect(Collectors.joining("\r\n"));

@wolfboys wolfboys merged commit 6b00a0c into apache:dev Aug 26, 2023
6 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants