mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-10 09:45:39 +02:00
Bug 317061: fixed exception throwing
This commit is contained in:
parent
d570162453
commit
8ab2acc24a
1 changed files with 1 additions and 1 deletions
|
@ -128,7 +128,7 @@ public class BasicProblemPreference extends AbstractProblemPreference {
|
||||||
String val = tokenizer.sval;
|
String val = tokenizer.sval;
|
||||||
importValue(val);
|
importValue(val);
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
new IllegalArgumentException(e);
|
throw new IllegalArgumentException(e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue