Skip to content

Commit

Permalink
Convert to LF and ensure LF at EOF in o.e.equinox.useradmin
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 akurtakov committed Oct 12, 2023
1 parent 4c8ad37 commit aacc9e1
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion bundles/org.eclipse.equinox.useradmin/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Vendor: %bundleVendor
Bundle-Version: 1.2.400.qualifier
Bundle-Version: 1.2.500.qualifier
Bundle-Activator: org.eclipse.equinox.internal.useradmin.Activator
Bundle-SymbolicName: org.eclipse.equinox.useradmin
Import-Service: org.osgi.service.log.LogService
Expand Down
2 changes: 1 addition & 1 deletion bundles/org.eclipse.equinox.useradmin/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>
2 changes: 1 addition & 1 deletion bundles/org.eclipse.equinox.useradmin/build.properties
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ output.. = bin/
pom.model.property.code.ignoredWarnings = -warn:-deprecation,raw,unchecked,discouraged,warningToken

## Configuration for TCK tests to execute for this project
pom.model.property.tck.artifact = org.osgi.test.cases.useradmin,org.eclipse.equinox.preferences
pom.model.property.tck.artifact = org.osgi.test.cases.useradmin,org.eclipse.equinox.preferences
Original file line number Diff line number Diff line change
Expand Up @@ -126,4 +126,4 @@ public void putServiceReferenceProperties(Hashtable<String, Object> properties,
}
}

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@ public class UserAdminMsg extends NLS {
// initialize resource bundles
NLS.initializeMessages(BUNDLE_NAME, UserAdminMsg.class);
}
}
}

0 comments on commit aacc9e1

Please sign in to comment.