Details

    Description

      Clean up for redundant throw clause, such as : `StorageEngine#setTTL`.

      public void setTTL(PartialPath storageGroup, long dataTTL) throws StorageEngineException {
          // storage group has no data
          if (!processorMap.containsKey(storageGroup)) {
            return;
          }
      
          processorMap.get(storageGroup).setTTL(dataTTL);
      
        }
      

      `StorageEngineException` is redundant.
       

       

      Attachments

        Issue Links

          Activity

            People

              sunjincheng121 sunjincheng
              sunjincheng121 sunjincheng
              Votes:
              0 Vote for this issue
              Watchers:
              1 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: