Merge pull request #1557 from AaricChen/v5-dev

修复拼写错误
This commit is contained in:
Golden Looly 2021-05-08 11:13:31 +08:00 committed by GitHub
commit d6668b5a93
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -313,6 +313,11 @@ public class OsInfo implements Serializable{
*
* @return 如果当前OS类型为Windows 8则返回<code>true</code>
*/
public final boolean isWindows8() {
return IS_OS_WINDOWS_8;
}
@Deprecated
public final boolean isWindoows8() {
return IS_OS_WINDOWS_8;
}