Skip to content

Commit 30d9608

Browse files
committed
Updated Swordfish jar
1 parent c84afc1 commit 30d9608

4 files changed

Lines changed: 9 additions & 10 deletions

File tree

README.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,13 @@ These applications are required to install and run RemoteTM Web Server:
1717

1818
_Tip_: Visit [SSL/TLS Configuration How-To](https://tomcat.apache.org/tomcat-9.0-doc/ssl-howto.html) for information on configuring Apache Tomcat to support HTTPS protocol.
1919

20+
## Building
21+
22+
You need `Java 21` and `gradle 9.x` to build RemoteTM from source code.
23+
24+
- Point `JAVA_HOME` to your Java 21 installation.
25+
- Run `gradle` in the root directory of the project.
26+
2027
## SaaS (Software as a Service)
2128

2229
RemoteTM servers are available for rent at Maxprograms' [Online Store](https://www.maxprograms.com/store/buy.html).
@@ -36,7 +43,7 @@ You can download `RemoteTM.war` from RemoteTM's [Home Page](https://maxprograms.
3643

3744
Peer support is available at [Groups.io](https://groups.io/g/maxprograms/)
3845

39-
Users with an active Swordfish subscription may contact tech@maxprograms.com for assistance.
46+
Users with an active Swordfish subscription may contact <tech@maxprograms.com> for assistance.
4047

4148
## Legal
4249

97 Bytes
Binary file not shown.

src/com/maxprograms/remotetm/Constants.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ private Constants() {
1919
}
2020

2121
public static final String VERSION = "6.2.0";
22-
public static final String BUILD = "20260315_0853";
22+
public static final String BUILD = "20260316_0753";
2323

2424
public static final String STATUS = "status";
2525
public static final String OK = "OK";

src/com/maxprograms/remotetm/TmManager.java

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@
1414

1515
import java.io.File;
1616
import java.io.IOException;
17-
import java.lang.System.Logger;
18-
import java.lang.System.Logger.Level;
1917
import java.net.URISyntaxException;
2018
import java.nio.file.Files;
2119
import java.sql.SQLException;
@@ -40,9 +38,6 @@
4038

4139
public class TmManager {
4240

43-
// TODO remove logger before distributing
44-
private static Logger logger = System.getLogger(TmManager.class.getName());
45-
4641
static final String MEMORIES = "memories";
4742
static final String CLOSED = "Memory is closed";
4843

@@ -56,10 +51,7 @@ private TmManager() {
5651
public static int storeTMX(String memory, String tmx, String project, String client, String subject)
5752
throws IOException, SQLException, SAXException, ParserConfigurationException, URISyntaxException {
5853
ITmEngine db = openMemory(memory);
59-
// TODO remove logging before distributing
60-
logger.log(Level.INFO, "Importing TMX: {0}", tmx);
6154
int imported = db.storeTMX(tmx, project, client, subject);
62-
logger.log(Level.INFO, "Imported {0} segments from TMX: {1}", new Object[] { imported, tmx });
6355
close(memory);
6456
Files.deleteIfExists(new File(tmx).toPath());
6557
return imported;

0 commit comments

Comments
 (0)