Skip to content
This repository has been archived by the owner on May 9, 2020. It is now read-only.

Commit

Permalink
Applied patch from jira issue - OFBIZ-7388 - Enforce noninstantiabili…
Browse files Browse the repository at this point in the history
…ty to LayoutWorker Class. Thanks Rishi Solanki and Rahul Singh Kushwah for your contribution.

git-svn-id: https://svn.apache.org/repos/asf/ofbiz/trunk@1750329 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
Arun Patidar committed Jun 27, 2016
1 parent 224d3bf commit 9e89689
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,12 @@
/**
* LayoutWorker Class
*/
public class LayoutWorker {
public final class LayoutWorker {

public static final String module = LayoutWorker.class.getName();
public static final String err_resource = "ContentErrorUiLabels";
private static final String err_resource = "ContentErrorUiLabels";

private LayoutWorker() {}

/**
* Uploads image data from a form and stores it in ImageDataResource.
Expand Down

0 comments on commit 9e89689

Please sign in to comment.