Home | History | Annotate | Download | only in jbosh

Lines Matching refs:minor

43      * Minor portion of the version.
45 private final int minor;
59 "Illegal ver attribute value (not in major.minor form): "
79 minor = Integer.parseInt(minorStr);
82 "Could not parse ver attribute value (minor ver): "
86 if (minor < 0) {
88 "Minor version may not be < 0"));
128 * Returns the 'minor' portion of the version number.
130 * @return minor digits only
133 return minor;
153 } else if (minor < other.minor) {
155 } else if (minor > other.minor) {