Skip to content

Commit 952f091

Browse files
Fix for Useless toString on String (#826)
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
1 parent 03dc022 commit 952f091

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

java_package/brainflow/src/main/java/brainflow/JarHelper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public static Path unpack_from_jar (String lib_name)
2424
}
2525
try
2626
{
27-
System.err.println ("Unpacking to: " + file.getAbsolutePath ().toString ());
27+
System.err.println ("Unpacking to: " + file.getAbsolutePath ());
2828
if (file.exists ())
2929
file.delete ();
3030
InputStream link = (JarHelper.class.getResourceAsStream (lib_name));

0 commit comments

Comments
 (0)