File tree Expand file tree Collapse file tree 1 file changed +8
-9
lines changed
sbe-tool/src/main/java/uk/co/real_logic/sbe/generation/java Expand file tree Collapse file tree 1 file changed +8
-9
lines changed Original file line number Diff line number Diff line change @@ -160,25 +160,24 @@ public static String formatPropertyName(final String value)
160
160
161
161
/**
162
162
* Format a Getter name for generated code.
163
- * <p>
164
163
*
165
- * @param value to be formatted.
166
- * @return the string formatted as a getter name.
164
+ * @param propertyName to be formatted.
165
+ * @return the property name formatted as a getter name.
167
166
*/
168
- public static String formatGetterName (final String value )
167
+ public static String formatGetterName (final String propertyName )
169
168
{
170
- return "get" + Generators .toUpperFirstChar (value );
169
+ return "get" + Generators .toUpperFirstChar (propertyName );
171
170
}
172
171
173
172
/**
174
173
* Format a class name for the generated code.
175
174
*
176
- * @param value to be formatted.
177
- * @return the string formatted as a class name.
175
+ * @param className to be formatted.
176
+ * @return the formatted class name.
178
177
*/
179
- public static String formatClassName (final String value )
178
+ public static String formatClassName (final String className )
180
179
{
181
- return Generators .toUpperFirstChar (value );
180
+ return Generators .toUpperFirstChar (className );
182
181
}
183
182
184
183
/**
You can’t perform that action at this time.
0 commit comments