Skip to content

Commit

Permalink
Convert to LF and ensure LF at EOF in o.e.osgi-supplement
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 <[email protected]>
  • Loading branch information
Torbjorn-Svensson authored and vogella committed Jan 15, 2024
1 parent 4bbf022 commit af0678b
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1 +1 @@
incompatible_api_component_version=Warning
incompatible_api_component_version=Warning
2 changes: 1 addition & 1 deletion bundles/org.eclipse.osgi/supplement/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -73,4 +73,4 @@ <h3>Third Party Content</h3>


</body>
</html>
</html>
Original file line number Diff line number Diff line change
Expand Up @@ -225,4 +225,4 @@ public interface DebugOptions {
* @since 3.5
*/
public abstract DebugTrace newDebugTrace(String bundleSymbolicName, Class<?> traceEntryClass);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -65,4 +65,4 @@ public interface DebugOptionsListener extends EventListener {
* @param options a reference to the DebugOptions
*/
public void optionsChanged(DebugOptions options);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -121,4 +121,4 @@ public interface DebugTrace {
* @param result The result being returned from the method that was executed
*/
public void traceExit(final String option, final Object result);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -948,4 +948,4 @@ void closeOutputStream(ManagedOutputStream smos) throws IOException {
}
}
}
}
}

0 comments on commit af0678b

Please sign in to comment.