Toggle navigation
Toggle navigation
This project
Loading...
Sign in
ufo
/
ufo-platform
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
wujiexiang
2020-03-05 16:57:30 +0800
Commit
4ba640d81a4c524753f65586390b15302c6ef8fb
1 parent
47c6a774
fix index bug
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
coupon/src/main/java/com/yoho/ufo/coupon/util/Strings.java
coupon/src/main/java/com/yoho/ufo/coupon/util/Strings.java
View file @
4ba640d
...
...
@@ -49,7 +49,7 @@ public class Strings {
if
(
i
>
0
)
{
sb
.
append
(
delimiter
);
}
sb
.
append
(
list
.
get
(
0
));
sb
.
append
(
list
.
get
(
i
));
}
return
sb
.
toString
();
}
...
...
Please
register
or
login
to post a comment