Version handling (ticket #1318)
   - MAX param now optional
   - 1-digit versions now accepted for MIN and MAX
   - Use VersionComparator for version tests
   - Don't require a minor version of 0
   - Fix empty properties check
   - Overrides
   - Prep for version 3.1
  Throw exception on null option key (ticket #1325)
This commit is contained in:
zzz
2014-06-27 20:36:34 +00:00
parent d8c8586ccf
commit 0fc3029aaa
5 changed files with 51 additions and 40 deletions

View File

@@ -85,9 +85,9 @@ class SAMv1Handler extends SAMHandler implements SAMRawReceiver, SAMDatagramRece
}
}
public boolean verifVersion() {
return ( verMajor == 1 && verMinor == 0 ) ;
}
public boolean verifVersion() {
return (verMajor == 1);
}
public void handle() {
String msg = null;