提交 89b73af1 authored 作者: Evgenij Ryazanov's avatar Evgenij Ryazanov

Simplify SRID check

上级 491b201a
...@@ -167,8 +167,7 @@ public class ValueGeometry extends Value { ...@@ -167,8 +167,7 @@ public class ValueGeometry extends Value {
default: default:
break getSRID; break getSRID;
} }
int type = Bits.readInt(bytes, 1); if ((bytes[bigEndian ? 1 : 4] & 0x20) != 0 && bytes.length >= 9) {
if ((type & (bigEndian ? 0x2000_0000 : 0x20)) != 0 && bytes.length >= 9) {
srid = Bits.readInt(bytes, 5); srid = Bits.readInt(bytes, 5);
if (!bigEndian) { if (!bigEndian) {
srid = Integer.reverseBytes(srid); srid = Integer.reverseBytes(srid);
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论