diff --git a/lib/DevApp/src/main/java/dev/utils/app/cache/DevCache.java b/lib/DevApp/src/main/java/dev/utils/app/cache/DevCache.java index 945d511bb4..911ab04689 100644 --- a/lib/DevApp/src/main/java/dev/utils/app/cache/DevCache.java +++ b/lib/DevApp/src/main/java/dev/utils/app/cache/DevCache.java @@ -163,11 +163,11 @@ private DevCache( * Since writing about the file is complete, and its close method is called, * its contents will be registered in the cache */ - class xFileOutputStream extends FileOutputStream { + class XFileOutputStream extends FileOutputStream { private File file; - public xFileOutputStream(File file) throws FileNotFoundException { + public XFileOutputStream(File file) throws FileNotFoundException { super(file); this.file = file; } @@ -431,7 +431,7 @@ public boolean put( public OutputStream put(final String key) throws FileNotFoundException { File file = mCache.newFile(key); if (file != null) { - return new xFileOutputStream(file); + return new XFileOutputStream(file); } return null; }