Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[Android] Integer.toString isn't required in this string declaration.…
… Concatenation handles this.

For example: "string" + 1 will just be concatenated as "string1" implicitly.
  • Loading branch information
lioncash committed Aug 13, 2013
1 parent debd5b4 commit a8fcd50
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -49,7 +49,7 @@ private void Fill()

for (int a = 0; a < intDirectories; ++a)
{
String BrowseDir = NativeLibrary.GetConfig("Dolphin.ini", "General", "GCMPath" + Integer.toString(a), "");
String BrowseDir = NativeLibrary.GetConfig("Dolphin.ini", "General", "GCMPath" + a, "");
File currentDir = new File(BrowseDir);
File[]dirs = currentDir.listFiles();
try
Expand Down

0 comments on commit a8fcd50

Please sign in to comment.