Skip to content

Commit 0a36d41

Browse files
committed
renamed NativeScriptSyncServiceSocketIml to NativeScriptSyncServiceSocketImpl
1 parent 75b8188 commit 0a36d41

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

test-app/app/src/debug/java/com/tns/NativeScriptSyncServiceSocketIml.java renamed to test-app/app/src/debug/java/com/tns/NativeScriptSyncServiceSocketImpl.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
import java.io.OutputStream;
1414
import java.util.Arrays;
1515

16-
public class NativeScriptSyncServiceSocketIml {
16+
public class NativeScriptSyncServiceSocketImpl {
1717
private static String DEVICE_APP_DIR;
1818

1919
private final Runtime runtime;
@@ -23,7 +23,7 @@ public class NativeScriptSyncServiceSocketIml {
2323
private LocalServerSocketThread localServerThread;
2424
private Thread localServerJavaThread;
2525

26-
public NativeScriptSyncServiceSocketIml(Runtime runtime, Logger logger, Context context) {
26+
public NativeScriptSyncServiceSocketImpl(Runtime runtime, Logger logger, Context context) {
2727
this.runtime = runtime;
2828
this.logger = logger;
2929
this.context = context;
@@ -166,7 +166,7 @@ public void run() {
166166

167167
validateData();
168168
if(runtime != null && doRefreshInt == DO_REFRESH_VALUE) {
169-
runtime.runScript(new File(NativeScriptSyncServiceSocketIml.this.context.getFilesDir(), "internal/livesync.js"));
169+
runtime.runScript(new File(NativeScriptSyncServiceSocketImpl.this.context.getFilesDir(), "internal/livesync.js"));
170170
operationReportCode = OPERATION_END_REPORT_CODE;
171171
} else {
172172
operationReportCode = OPERATION_END_NO_REFRESH_REPORT_CODE;

test-app/app/src/main/java/com/tns/RuntimeHelper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ public static void initLiveSync(Runtime runtime, Logger logger, Application app)
273273
// runtime needs to be initialized before the NativeScriptSyncService is enabled because it uses runtime.runScript(...)
274274
try {
275275
@SuppressWarnings("unchecked")
276-
Class NativeScriptSyncService = Class.forName("com.tns.NativeScriptSyncServiceSocketIml");
276+
Class NativeScriptSyncService = Class.forName("com.tns.NativeScriptSyncServiceSocketImpl");
277277

278278
@SuppressWarnings("unchecked")
279279
Constructor cons = NativeScriptSyncService.getConstructor(new Class[] {Runtime.class, Logger.class, Context.class});

0 commit comments

Comments
 (0)