File tree Expand file tree Collapse file tree
android/sdl_android/src/androidTest/java/com/smartdevicelink/test
base/src/main/java/com/smartdevicelink/protocol/enums Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11package com .smartdevicelink .test ;
22
33import com .smartdevicelink .managers .file .filetypes .SdlFile ;
4- import com .smartdevicelink .protocol .enums .FrameData ;
54import com .smartdevicelink .protocol .enums .FrameDataControlFrameType ;
65import com .smartdevicelink .protocol .enums .FrameType ;
76import com .smartdevicelink .protocol .enums .SessionType ;
@@ -146,28 +145,7 @@ public static boolean validateFrameDataControlFrameTypeArray (FrameDataControlFr
146145
147146 return true ;
148147 }
149-
150- public static boolean validateFrameDataArray (FrameData [] array1 , FrameData [] array2 ) {
151- if (array1 == null ) {
152- return (array2 == null );
153- }
154-
155- if (array2 == null ) {
156- return (array1 == null );
157- }
158-
159- if (array1 .length != array2 .length ) {
160- return false ;
161- }
162-
163- for (int i = 0 ; i < array1 .length ; i ++) {
164- if (array1 [i ] != array2 [i ]) {
165- return false ;
166- }
167- }
168-
169- return true ;
170- }
148+
171149
172150 public static boolean validateImage (Image image1 , Image image2 ){
173151 if (image1 == null ){
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments