layers: Removed unused full_update_ from DescriptorSet class

I originally added this thinking it would be useful but currently
unused and not correctly tracked so just killing it.
diff --git a/layers/descriptor_sets.cpp b/layers/descriptor_sets.cpp
index 0f80c5f..bc55e6d 100644
--- a/layers/descriptor_sets.cpp
+++ b/layers/descriptor_sets.cpp
@@ -238,7 +238,7 @@
                                               const std::unordered_map<VkImage, IMAGE_NODE> *image_map,
                                               const std::unordered_map<VkImage, VkSwapchainKHR> *image_to_swapchain_map,
                                               const std::unordered_map<VkSwapchainKHR, SWAPCHAIN_NODE *> *swapchain_map)
-    : some_update_(false), full_update_(false), set_(set), p_layout_(layout), buffer_map_(buffer_map), memory_map_(memory_map),
+    : some_update_(false), set_(set), p_layout_(layout), buffer_map_(buffer_map), memory_map_(memory_map),
       buffer_view_map_(buffer_view_map), sampler_map_(sampler_map), image_view_map_(image_view_map), image_map_(image_map),
       image_to_swapchain_map_(image_to_swapchain_map), swapchain_map_(swapchain_map) {
     // Foreach binding, create default descriptors of given type
@@ -505,7 +505,6 @@
     }
     if (num_updates != 0) {
         some_update_ = true;
-        full_update_ = (descriptors_.size() == num_updates);
     }
     return true;
 }
@@ -575,7 +574,6 @@
     }
     if (num_updates != 0) {
         some_update_ = true;
-        full_update_ = (descriptors_.size() == num_updates);
     }
     return true;
 }
diff --git a/layers/descriptor_sets.h b/layers/descriptor_sets.h
index 1cce047..3d3ed8a 100644
--- a/layers/descriptor_sets.h
+++ b/layers/descriptor_sets.h
@@ -346,7 +346,6 @@
     bool ValidateUpdate(const VkWriteDescriptorSet *, const uint32_t, std::string *) const;
     bool VerifyUpdateConsistency(uint32_t, uint32_t, uint32_t, const char *, std::string *) const;
     bool some_update_; // has any part of the set ever been updated?
-    bool full_update_; // has every descriptor in the set been updated?
     VkDescriptorSet set_;
     uint32_t descriptor_count_; // Count of all descriptors in this set
     const DescriptorSetLayout *p_layout_;