Skip to content

Commit

Permalink
Convert to LF and ensure LF at EOF in o.e.equinox.security.linux
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 committed Oct 1, 2023
1 parent a12fe3e commit 0bdb919
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 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: %fragmentName
Bundle-SymbolicName: org.eclipse.equinox.security.linux;singleton:=true
Bundle-Version: 1.1.0.qualifier
Bundle-Version: 1.1.100.qualifier
Bundle-Vendor: %providerName
Fragment-Host: org.eclipse.equinox.security;bundle-version="[1.0.0,2.0.0)"
Bundle-RequiredExecutionEnvironment: JavaSE-17
Expand Down
2 changes: 1 addition & 1 deletion bundles/org.eclipse.equinox.security.linux/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
@@ -1,3 +1,3 @@
# To force a version qualifier update add the bug here

Bug 527899 [9] Implement JEP 280: Indify String Concatenation #1139
Bug 527899 [9] Implement JEP 280: Indify String Concatenation #1139
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ public class GBusType {
public final static int G_BUS_TYPE_NONE = 0;
public final static int G_BUS_TYPE_SYSTEM = 1;
public final static int G_BUS_TYPE_SESSION = 2;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ public GError(Pointer p) {
protected List<String> getFieldOrder() {
return List.of("domain", "code", "message"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ public GList(Pointer p) {
protected List<String> getFieldOrder() {
return List.of("data", "next", "prev"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@
public class SecretCollectionFlags {
public final static int SECRET_COLLECTION_NONE = 0 << 0;
public final static int SECRET_COLLECTION_LOAD_ITEMS = 1 << 1;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,4 @@ protected List<String> getFieldOrder() {
return List.of("name", "flags", "attributes", "reserved", "reserved1", "reserved2", "reserved3", "reserved4", //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ //$NON-NLS-5$ //$NON-NLS-6$ //$NON-NLS-7$ //$NON-NLS-8$
"reserved5", "reserved6", "reserved7"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ public SecretSchemaAttribute(String name, int type) {
protected List<String> getFieldOrder() {
return List.of("name", "type"); //$NON-NLS-1$ //$NON-NLS-2$
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ public class SecretSchemaAttributeType {
public static int SECRET_SCHEMA_ATTRIBUTE_STRING = 0;
public static int SECRET_SCHEMA_ATTRIBUTE_INTEGER = 1;
public static int SECRET_SCHEMA_ATTRIBUTE_BOOLEAN = 2;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@
public class SecretSchemaFlags {
public static int SECRET_SCHEMA_NONE = 0;
public static int SECRET_SCHEMA_DONT_MATCH_NAME = (1 << 1);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ public class SecretServiceFlags {
public final static int SECRET_SERVICE_NONE = 0;
public final static int SECRET_SERVICE_OPEN_SESSION = 1 << 1;
public final static int SECRET_SERVICE_LOAD_COLLECTIONS = 1 << 2;
}
}

0 comments on commit 0bdb919

Please sign in to comment.