mirror of
https://github.com/FossifyOrg/Gallery.git
synced 2024-12-05 02:38:01 +01:00
8 lines
187 B
Java
8 lines
187 B
Java
|
package com.simplemobiletools.gallery;
|
||
|
|
||
|
public class Helpers {
|
||
|
public static String getFilename(final String path) {
|
||
|
return path.substring(path.lastIndexOf("/") + 1);
|
||
|
}
|
||
|
}
|