summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorchaochaoc <[email protected]>2024-10-21 14:41:43 +0800
committerchaochaoc <[email protected]>2024-10-21 14:41:43 +0800
commit728e3407e8125250450e9fa97bc786e47e2d3ec1 (patch)
treeaca1383d3d1fe8e2676c1c88501e5cdffc7cb7b0
parent16d71addda10ca59f8705af2c36bc858886bdc60 (diff)
fix: init value
-rw-r--r--src/main/java/com/geedgenetworks/flink/easy/application/voip/udf/StreamDirSet.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/com/geedgenetworks/flink/easy/application/voip/udf/StreamDirSet.java b/src/main/java/com/geedgenetworks/flink/easy/application/voip/udf/StreamDirSet.java
index de1d727..bd44ae4 100644
--- a/src/main/java/com/geedgenetworks/flink/easy/application/voip/udf/StreamDirSet.java
+++ b/src/main/java/com/geedgenetworks/flink/easy/application/voip/udf/StreamDirSet.java
@@ -9,7 +9,7 @@ public class StreamDirSet extends ScalarFunction {
if (flags == null) {
return 8192 + 16384L;
}
- Long r = null;
+ long r = 0;
if ((flags & 8192) == 0) {
r += 8192;
}