Skip to content

Commit 38565f6

Browse files
authored
Avoid NullPointerException
1 parent 47a99c4 commit 38565f6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

plugins/XposedGenerator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@ private static String ProcessContentExtractedPackage(String contentFile){
311311
try
312312
//
313313
{
314-
if (foundpckg.isEmpty() || foundpckg == null)
314+
if (foundpckg == null || foundpckg.isEmpty())
315315
foundpckg = "No Package Found";
316316

317317
}

0 commit comments

Comments
 (0)