Skip to content

Commit

Permalink
add the public access control back
Browse files Browse the repository at this point in the history
  • Loading branch information
caiyue1993 committed Aug 4, 2020
1 parent c8722d2 commit f42e23e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion IceCream/Classes/CreamAsset.swift
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ public class CreamAsset: Object {
/// - propName: The unique property name to identify this asset. e.g.: Dog Object may have multiple CreamAsset properties, so we need unique `propName`s to identify these.
/// - url: The location where asset locates
/// - Returns: The CreamAsset if creates successful
static func create(objectID: String, propName: String, url: URL) -> CreamAsset? {
public static func create(objectID: String, propName: String, url: URL) -> CreamAsset? {
let creamAsset = CreamAsset(objectID: objectID, propName: propName)
if !FileManager.default.fileExists(atPath: creamAsset.filePath.path) {
do {
Expand Down

0 comments on commit f42e23e

Please sign in to comment.