Merge pull request #58 from PAMGuard/main

Remove comments in split positioner
This commit is contained in:
Douglas Gillespie 2024-01-24 14:46:39 +00:00 committed by GitHub
commit a6765d72b1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 5 additions and 5 deletions

View File

@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.pamguard</groupId>
<artifactId>Pamguard</artifactId>
<version>2.02.09aa</version>
<version>2.02.09ab</version>
<name>Pamguard Java12+</name>
<description>Pamguard for Java 12+, using Maven to control dependcies</description>
<url>www.pamguard.org</url>

View File

@ -31,12 +31,12 @@ public class PamguardVersionInfo {
* Version number, major version.minorversion.sub-release.
* Note: can't go higher than sub-release 'f'
*/
static public final String version = "2.02.09aa";
static public final String version = "2.02.09ab";
/**
* Release date
*/
static public final String date = "12 January 20242";
static public final String date = "18 January 2024";
// /**
// * Release type - Beta or Core

View File

@ -82,8 +82,8 @@ public class SplitPanePositioner implements PamSettings {
@Override
public void run() {
int newPos = posData.getPosition() + splitPane.getHeight() - posData.getHeight();
System.out.printf("Set split %s position to %d or %3.3f of %d\n", unitName,
posData.getPosition(), posData.getPropPosition(), splitPane.getHeight());
// System.out.printf("Set split %s position to %d or %3.3f of %d\n", unitName,
// posData.getPosition(), posData.getPropPosition(), splitPane.getHeight());
splitPane.setDividerLocation(posData.getPosition());
}
});