forked from I2P_Developers/i2p.i2p
SAM:
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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user