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