From d95a0d78307823f709ad8c141cd253c44c538896 Mon Sep 17 00:00:00 2001 From: 1 <4764355+oneVR@users.noreply.github.com> Date: Tue, 6 Apr 2021 06:53:17 +0300 Subject: [PATCH] Remove redundant default values --- Scripts/Editor/MassTextureImporter.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Scripts/Editor/MassTextureImporter.cs b/Scripts/Editor/MassTextureImporter.cs index e91c0b4..aed2278 100644 --- a/Scripts/Editor/MassTextureImporter.cs +++ b/Scripts/Editor/MassTextureImporter.cs @@ -9,10 +9,10 @@ namespace VRWorldToolkit { public class TextureDetails { - private int? uncrunchedCount = null; - private int? normalMaps = null; - private int? cubemaps = null; - private long? storageSize = null; + private int? uncrunchedCount; + private int? normalMaps; + private int? cubemaps; + private long? storageSize; private readonly Dictionary textureList = new Dictionary();