File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
opengrok-indexer/src/main/java/org/opengrok/indexer/history Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -154,7 +154,7 @@ public boolean fileHasAnnotation(File file) {
154
154
* @param interactive interactive mode flag
155
155
* @return true if the given file is in the depot, false otherwise
156
156
*/
157
- public static boolean isInP4Depot (File file , boolean interactive ) {
157
+ static boolean isInP4Depot (File file , boolean interactive ) {
158
158
boolean status = false ;
159
159
if (testRepo .isWorking ()) {
160
160
ArrayList <String > cmd = new ArrayList <>();
@@ -239,7 +239,7 @@ String determineBranch(boolean interactive) {
239
239
* @param rev Internal rev number.
240
240
* @return rev number formatted for P4 command-line.
241
241
*/
242
- public static String getRevisionCmd (String rev ) {
242
+ static String getRevisionCmd (String rev ) {
243
243
if (rev == null || "" .equals (rev )) {
244
244
return "" ;
245
245
}
@@ -251,7 +251,7 @@ public static String getRevisionCmd(String rev) {
251
251
* @param last Last revision number.
252
252
* @return rev number formatted for P4 command-line.
253
253
*/
254
- public static String getRevisionCmd (String first , String last ) {
254
+ static String getRevisionCmd (String first , String last ) {
255
255
if ((first == null || "" .equals (first )) &&
256
256
((last == null ) || "" .equals (last ))) {
257
257
return "" ;
You can’t perform that action at this time.
0 commit comments