Skip to content

Commit

Permalink
Convert to LF and ensure LF at EOF in o.e.equinox.concurrent
Browse files Browse the repository at this point in the history
This was achieved by running:
find . -type f -print0 | \
  xargs -r0 perl -le 'for (@argv) { print if -f && -T }' | \
  xargs -rd'\n' dos2unix -e

Signed-off-by: Torbjörn SVENSSON <torbjorn.svensson@st.com>
  • Loading branch information
Torbjorn-Svensson authored and akurtakov committed Nov 3, 2023
1 parent 2af5a94 commit 99ce69f
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: org.eclipse.equinox.concurrent
Bundle-Version: 1.2.100.qualifier
Bundle-Version: 1.2.200.qualifier
Bundle-Vendor: %pluginProvider
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
Import-Package: org.eclipse.core.runtime;version="3.4.0";common=split,
Expand Down
2 changes: 1 addition & 1 deletion bundles/org.eclipse.equinox.concurrent/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ <h3>License</h3>
</p>

</body>
</html>
</html>
Original file line number Diff line number Diff line change
Expand Up @@ -116,4 +116,4 @@ public void setChildProgressMonitor(IProgressMonitor value) {
}
}

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,4 @@ public interface IProgressRunnable<ResultType> {
* @throws Exception
*/
ResultType run(IProgressMonitor monitor) throws Exception;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,4 @@ public TimeoutException(String message, long time) {
public long getDuration() {
return duration;
}
}
}

0 comments on commit 99ce69f

Please sign in to comment.