diff options
author | Marcos Paulo de Souza <marcos.souza.org@gmail.com> | 2012-09-26 01:40:41 -0300 |
---|---|---|
committer | Noel Power <noel.power@suse.com> | 2012-09-26 09:45:00 +0100 |
commit | 6595e392eb314b79dec922daf9704569d0c8fff4 (patch) | |
tree | fe2f4a1fd04ca3f21c3471ae4d6b5220413d468f /ucb/qa | |
parent | 30dba8159557fcebbc7165752697783c2379c824 (diff) |
fdo#51304: Remove the author of some java source files
This patch remove some '@author' for Java souce files, and removes some commented code founded
when removing the '@author'.
Change-Id: I7bff1507212e967069f3d18e6c1040f69501694a
Signed-off-by: Marcos Paulo de Souza <marcos.souza.org@gmail.com>
Diffstat (limited to 'ucb/qa')
-rw-r--r-- | ucb/qa/complex/tdoc/_XContent.java | 4 | ||||
-rw-r--r-- | ucb/qa/complex/tdoc/_XPropertyContainer.java | 4 | ||||
-rw-r--r-- | ucb/qa/complex/ucb/UCB.java | 19 |
3 files changed, 0 insertions, 27 deletions
diff --git a/ucb/qa/complex/tdoc/_XContent.java b/ucb/qa/complex/tdoc/_XContent.java index 72e20b840879..d97349937dbd 100644 --- a/ucb/qa/complex/tdoc/_XContent.java +++ b/ucb/qa/complex/tdoc/_XContent.java @@ -22,10 +22,6 @@ import com.sun.star.ucb.XContentEventListener; import com.sun.star.ucb.XContentIdentifier; import share.LogWriter; -/** - * - * @author sg128468 - */ public class _XContent { public XContent oObj = null; public LogWriter log = null; diff --git a/ucb/qa/complex/tdoc/_XPropertyContainer.java b/ucb/qa/complex/tdoc/_XPropertyContainer.java index 3fdd3fd02719..50be2d929a06 100644 --- a/ucb/qa/complex/tdoc/_XPropertyContainer.java +++ b/ucb/qa/complex/tdoc/_XPropertyContainer.java @@ -20,10 +20,6 @@ package complex.tdoc; import com.sun.star.beans.XPropertyContainer; import share.LogWriter; -/** - * - * @author sg128468 - */ public class _XPropertyContainer { public XPropertyContainer oObj = null; public LogWriter log = null; diff --git a/ucb/qa/complex/ucb/UCB.java b/ucb/qa/complex/ucb/UCB.java index 2296b7530037..d9376386ae75 100644 --- a/ucb/qa/complex/ucb/UCB.java +++ b/ucb/qa/complex/ucb/UCB.java @@ -18,26 +18,14 @@ package complex.ucb; -/** - * @author ab106281 - * - * To change the template for this generated type comment go to - * Window>Preferences>Java>Code Generation>Code and Comments - */ - import java.util.List; import java.util.ArrayList; import com.sun.star.beans.Property; import com.sun.star.sdbc.XResultSet; import com.sun.star.sdbc.XRow; -// import com.sun.star.uno.XComponentContext; import com.sun.star.ucb.*; -// import com.sun.star.bridge.XUnoUrlResolver; import com.sun.star.uno.UnoRuntime; -// import com.sun.star.uno.XComponentContext; -// import com.sun.star.lang.XMultiComponentFactory; -// import com.sun.star.beans.XPropertySet; import org.junit.AfterClass; import org.junit.BeforeClass; @@ -46,7 +34,6 @@ import org.openoffice.test.OfficeConnection; import static org.junit.Assert.*; /** - * @author rpiterman * This class is used to copy the content of a folder to * another folder. * There is an incosistency with argument order. @@ -55,10 +42,6 @@ import static org.junit.Assert.*; public class UCB { private XUniversalContentBroker ucb; -// public String[] getTestMethodNames() { -// return new String[] {"checkWrongFtpConnection"}; -// } - public void init() throws Exception { ucb = UniversalContentBroker.create(connection.getComponentContext()); } @@ -195,7 +178,6 @@ public class UCB { } @Test public void checkWrongFtpConnection() { - //localhost ;Lo-1.Germany.sun.com; 10.16.65.155 try { String acountUrl = "ftp://noname:nopasswd@nohost"; System.out.println(acountUrl); @@ -221,7 +203,6 @@ public class UCB { System.out.println("ExName: '"+exceptionName+"'"); fail("Wrong exception thrown: " + exceptionName); } -// System.exit(0); } // setup and close connections |