mirror of https://github.com/apache/cassandra
don't declare throwing exceptions that aren't
This commit is contained in:
parent
402f8e0060
commit
1a0c0d375b
|
|
@ -364,7 +364,7 @@ public class CompactionManager implements CompactionManagerMBean
|
|||
}
|
||||
|
||||
@Override
|
||||
public void execute(LifecycleTransaction input) throws IOException
|
||||
public void execute(LifecycleTransaction input)
|
||||
{
|
||||
scrubOne(cfs, input, skipCorrupted, checkData);
|
||||
}
|
||||
|
|
@ -953,7 +953,7 @@ public class CompactionManager implements CompactionManagerMBean
|
|||
}
|
||||
}
|
||||
|
||||
private void scrubOne(ColumnFamilyStore cfs, LifecycleTransaction modifier, boolean skipCorrupted, boolean checkData) throws IOException
|
||||
private void scrubOne(ColumnFamilyStore cfs, LifecycleTransaction modifier, boolean skipCorrupted, boolean checkData)
|
||||
{
|
||||
CompactionInfo.Holder scrubInfo = null;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue