Remove trailing semicolons in Java

Bug: None
Change-Id: I79879691e47255dc2782ddcbfc80db777609a233
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/361304
Commit-Queue: Zoé Lepaul <xalep@webrtc.org>
Reviewed-by: Zoé Lepaul <xalep@webrtc.org>
Cr-Commit-Position: refs/heads/main@{#42944}
This commit is contained in:
Björn Terelius 2024-09-03 18:05:51 +02:00 committed by WebRTC LUCI CQ
parent 2da07c8ebb
commit e540648079
4 changed files with 4 additions and 4 deletions

View File

@ -193,4 +193,4 @@ public class DataChannel {
private native long nativeBufferedAmount();
private native void nativeClose();
private native boolean nativeSend(byte[] data, boolean binary);
};
}

View File

@ -93,4 +93,4 @@ public class DtmfSender {
private static native String nativeTones(long dtmfSender);
private static native int nativeDuration(long dtmfSender);
private static native int nativeInterToneGap(long dtmfSender);
};
}

View File

@ -95,4 +95,4 @@ public class RtpReceiver {
private static native long nativeSetObserver(long rtpReceiver, Observer observer);
private static native void nativeUnsetObserver(long rtpReceiver, long nativeObserver);
private static native void nativeSetFrameDecryptor(long rtpReceiver, long nativeFrameDecryptor);
};
}

View File

@ -150,4 +150,4 @@ public class RtpSender {
private static native void nativeSetFrameEncryptor(long rtpSender, long nativeFrameEncryptor);
private static native String nativeGetMediaType(long rtpSender);
};
}