mirror of
https://github.com/AppleCommander/AppleCommander.git
synced 2024-12-21 17:29:55 +00:00
Trim spaces from name in RdosFileEntry.getFileName().
This commit is contained in:
parent
683ffd19e8
commit
40a7dc769b
@ -94,7 +94,7 @@ public class RdosFileEntry implements FileEntry {
|
||||
* Return the name of this file.
|
||||
*/
|
||||
public String getFilename() {
|
||||
return isDeleted() ? textBundle.get("RdosFileEntry.NotInUse") : AppleUtil.getString(fileEntry, 0, 24); //$NON-NLS-1$
|
||||
return isDeleted() ? textBundle.get("RdosFileEntry.NotInUse") : AppleUtil.getString(fileEntry, 0, 24).trim(); //$NON-NLS-1$
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user