Move source files into library folder

This commit is contained in:
Sergey Abramchuk
2020-03-03 12:46:01 +03:00
parent 990326e52f
commit 7d53a7f396
58 changed files with 0 additions and 0 deletions
@@ -0,0 +1,16 @@
//
// NSArray+OpenVPNAdditions.m
// OpenVPNAdapter
//
// Created by Sergey Abramchuk on 16/10/2018.
//
#import "NSArray+OpenVPNAdditions.h"
@implementation NSArray (OpenVPNEmptyArray)
- (BOOL)ovpn_isNotEmpty {
return (self.count > 0) ? YES : NO;
}
@end