Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d6c052a8 authored by Jeff Hamilton's avatar Jeff Hamilton
Browse files

Make some contructors public but hidden.

This allows them to be used from within the
NFC stack process internally.

Change-Id: I7f81759da63d451efe86550a57a400fb224b2064
parent 044df235
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -78,8 +78,9 @@ public class LlcpServiceSocket {
	 * @param handle
	 *            The handle returned by the NFC service and used to identify
	 *            the socket in subsequent calls.
	 * @hide
	 */
	LlcpServiceSocket(ILlcpServiceSocket service, ILlcpSocket socketService, int handle) {
	public LlcpServiceSocket(ILlcpServiceSocket service, ILlcpSocket socketService, int handle) {
		this.mService = service;
		this.mHandle = handle;
		this.mLlcpSocketService = socketService;
+2 −1
Original line number Diff line number Diff line
@@ -78,8 +78,9 @@ public class LlcpSocket {
	 * @param handle
	 *            The handle returned by the NFC service and used to identify
	 *            the socket in subsequent calls.
	 * @hide
	 */
	LlcpSocket(ILlcpSocket service, int handle) {
	public LlcpSocket(ILlcpSocket service, int handle) {
		this.mService = service;
		this.mHandle = handle;
	}