Removed useless trim
This commit is contained in:
parent
6e8590ba8e
commit
db6138b440
1 changed files with 1 additions and 1 deletions
|
@ -88,7 +88,7 @@ public class OPML20Generator extends OPML10Generator {
|
|||
}
|
||||
}
|
||||
final String categoryString = builder.toString();
|
||||
if (categoryString == null || categoryString.trim().isEmpty()) {
|
||||
if (categoryString == null || categoryString.isEmpty()) {
|
||||
return null;
|
||||
} else {
|
||||
return categoryString;
|
||||
|
|
Loading…
Reference in a new issue