Skip to content

Commit 55ac14d

Browse files
committed
fix #687 - clean up indenting in some classes we missed
(cherry picked from commit 4d962e4)
1 parent dc793b5 commit 55ac14d

26 files changed

+3305
-3280
lines changed

src/main/java/com/marklogic/client/example/util/Bootstrapper.java

Lines changed: 415 additions & 411 deletions
Large diffs are not rendered by default.

src/main/java/com/marklogic/client/extensions/ResourceManager.java

Lines changed: 34 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -24,50 +24,50 @@
2424
* installed on the server using {@link com.marklogic.client.admin.ResourceExtensionsManager}.
2525
* Initialize a ResourceManager object by passing it to the
2626
* {@link com.marklogic.client.DatabaseClient}.init() method.
27-
*
27+
*
2828
* <p>To expose the services provided by a resource service extension to
2929
* applications, implement a subclass of ResourceManager. In your subclass, use
3030
* the methods of a {@link ResourceServices} object to call the Resource Services
3131
* on the server.</p>
32-
*
32+
*
3333
* <p>Obtain a {@link ResourceServices} object by calling the protected
3434
* <code>getServices</code> method of the ResourceManager. This method
3535
* has the following signature:</p>
36-
*
36+
*
3737
* <p><code>{@link ResourceServices} getServices()</code></p>
3838
*/
3939
abstract public class ResourceManager
40-
extends ResourceManagerImplementation
40+
extends ResourceManagerImplementation
4141
{
42-
protected ResourceManager() {
43-
super();
44-
}
45-
/**
46-
* Returns the name of the resource.
47-
* @return the name of the resource
48-
*/
49-
public String getName() {
50-
ResourceServices services = getServices();
51-
return (services != null) ? services.getResourceName() : null;
52-
}
42+
protected ResourceManager() {
43+
super();
44+
}
45+
/**
46+
* Returns the name of the resource.
47+
* @return the name of the resource
48+
*/
49+
public String getName() {
50+
ResourceServices services = getServices();
51+
return (services != null) ? services.getResourceName() : null;
52+
}
5353

54-
/**
55-
* Starts debugging client requests. You can suspend and resume debugging output
56-
* using the methods of the logger.
57-
*
58-
* @param logger the logger that receives debugging output
59-
*/
60-
public void startLogging(RequestLogger logger) {
61-
ResourceServices services = getServices();
62-
if (services != null)
63-
services.startLogging(logger);
64-
}
65-
/**
66-
* Stops debugging client requests.
67-
*/
68-
public void stopLogging() {
69-
ResourceServices services = getServices();
70-
if (services != null)
71-
services.stopLogging();
72-
}
54+
/**
55+
* Starts debugging client requests. You can suspend and resume debugging output
56+
* using the methods of the logger.
57+
*
58+
* @param logger the logger that receives debugging output
59+
*/
60+
public void startLogging(RequestLogger logger) {
61+
ResourceServices services = getServices();
62+
if (services != null)
63+
services.startLogging(logger);
64+
}
65+
/**
66+
* Stops debugging client requests.
67+
*/
68+
public void stopLogging() {
69+
ResourceServices services = getServices();
70+
if (services != null)
71+
services.stopLogging();
72+
}
7373
}

0 commit comments

Comments
 (0)