summaryrefslogtreecommitdiff
path: root/vcl/qa/complex
diff options
context:
space:
mode:
authorJosé Guilherme Vanz <guilherme.sft@gmail.com>2012-11-19 21:05:40 -0200
committerNorbert Thiebaud <nthiebaud@gmail.com>2012-11-20 05:15:45 +0000
commit4395680011e5e882d41cd1b3a4a0e14eda7430a8 (patch)
tree438acf9aa5f2d3af06f3ab67b7265fdc19d10013 /vcl/qa/complex
parent677a3f75e77b35f256b77b1de727790b468ab899 (diff)
fdo#51304: Remove @author annotation
This commit removes some @author annotations and some cleanup. Change-Id: Iaf2c4465825dc73af6c1d7377ae847262721c22b Signed-off-by: José Guilherme Vanz <guilherme.sft@gmail.com> Reviewed-on: https://gerrit.libreoffice.org/1122 Reviewed-by: Norbert Thiebaud <nthiebaud@gmail.com> Tested-by: Norbert Thiebaud <nthiebaud@gmail.com>
Diffstat (limited to 'vcl/qa/complex')
-rw-r--r--vcl/qa/complex/memCheck/FileHelper.java6
1 files changed, 0 insertions, 6 deletions
diff --git a/vcl/qa/complex/memCheck/FileHelper.java b/vcl/qa/complex/memCheck/FileHelper.java
index 7e8239e4c0bc..d4517502b2ce 100644
--- a/vcl/qa/complex/memCheck/FileHelper.java
+++ b/vcl/qa/complex/memCheck/FileHelper.java
@@ -18,10 +18,6 @@
package complex.memCheck;
-/**
- *
- * @author ll93751
- */
public class FileHelper
{
public static String appendPath(String _sPath, String _sRelativePathToAdd)
@@ -42,7 +38,6 @@ public class FileHelper
public static String getJavaCompatibleFilename(String _sFilename)
{
// It is a little bit stupid that office urls not compatible to java file urls
- // System.out.println("java.io.File can't access Office file urls.");
if(_sFilename.startsWith("path:"))
{
final String sPath = _sFilename.substring(5);
@@ -63,7 +58,6 @@ public static String getBasename(String _sFilename)
{
return "";
}
- // String fs = System.getProperty("file.separator");
int nIdx = _sFilename.lastIndexOf("\\");
if (nIdx == -1)