Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
eDrive
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Merge Requests
0
Merge Requests
0
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Environments
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
e
apps
eDrive
Commits
3472701f
Commit
3472701f
authored
Aug 20, 2019
by
vince-bourgmayer
1
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove a logcat entry for method which return file name from path
parent
006f82a2
Pipeline
#22466
passed with stage
in 2 minutes and 28 seconds
Changes
1
Pipelines
4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
1 deletion
+0
-1
app/src/main/java/foundation/e/drive/utils/CommonUtils.java
app/src/main/java/foundation/e/drive/utils/CommonUtils.java
+0
-1
No files found.
app/src/main/java/foundation/e/drive/utils/CommonUtils.java
View file @
3472701f
...
@@ -132,7 +132,6 @@ public abstract class CommonUtils {
...
@@ -132,7 +132,6 @@ public abstract class CommonUtils {
* @return String, the last part after separator of path or null if invalid path has been provided
* @return String, the last part after separator of path or null if invalid path has been provided
*/
*/
public
static
String
getFileNameFromPath
(
String
path
)
{
public
static
String
getFileNameFromPath
(
String
path
)
{
Log
.
i
(
TAG
,
"getFileNameFromPath("
+
path
+
")"
);
try
{
try
{
String
[]
splittedString
=
path
.
split
(
FileUtils
.
PATH_SEPARATOR
);
String
[]
splittedString
=
path
.
split
(
FileUtils
.
PATH_SEPARATOR
);
return
splittedString
[
splittedString
.
length
-
1
];
return
splittedString
[
splittedString
.
length
-
1
];
...
...
Vincent Bourgmayer
🎼
@vincent
mentioned in commit
87c766bd
·
Aug 20, 2019
mentioned in commit
87c766bd
mentioned in commit 87c766bd46292d236f0d9bc08a34e086da843673
Toggle commit list
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment