Skip to content

Commit

Permalink
LPS-94999 Remove unthrown exceptions
Browse files Browse the repository at this point in the history
  • Loading branch information
petershin authored and brianchandotcom committed May 23, 2019
1 parent 3d61c80 commit d8c5e89
Showing 1 changed file with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ public boolean isRtlExcludedPath(String filePath) {
return false;
}

private static void _printHelp(JCommander jCommander) throws Exception {
private static void _printHelp(JCommander jCommander) {
jCommander.usage();
}

Expand Down Expand Up @@ -249,7 +249,7 @@ private long _getOldestModifiedTime(String baseDir, String[] fileNames) {
);
}

private String _getRtlCss(String fileName, String css) throws Exception {
private String _getRtlCss(String fileName, String css) {
String rtlCss = css;

try {
Expand Down Expand Up @@ -324,9 +324,7 @@ private void _initSassCompiler(String sassCompilerClassName)
}
}

private boolean _isModified(String dirName, String[] fileNames)
throws Exception {

private boolean _isModified(String dirName, String[] fileNames) {
for (String fileName : fileNames) {
if (fileName.contains("_rtl")) {
continue;
Expand Down

0 comments on commit d8c5e89

Please sign in to comment.