Skip to content

Commit

Permalink
Remove redundant default values
Browse files Browse the repository at this point in the history
  • Loading branch information
oneVR committed Apr 6, 2021
1 parent 6afcf14 commit d95a0d7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Scripts/Editor/MassTextureImporter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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<Texture, TextureImporter> textureList = new Dictionary<Texture, TextureImporter>();

Expand Down

0 comments on commit d95a0d7

Please sign in to comment.